docx Questions
1
Solved
I am happily converting docx files to PDF via the command line (controlled via C# process calls) out of my service.
Unfortunately I could not find any internet search results on how to set the opti...
Zinck asked 23/6, 2020 at 12:58
5
I need to replace content in some word documents based on User input. I am trying to read a template file (e.g. "template.docx"), and replace First name {fname}, Address {address} etc.
template.do...
Lorettelorgnette asked 23/12, 2016 at 6:24
3
Solved
I am trying to copy elements of a doc from one doc file to other. The text part is easy, the images is where it gets tricky.
Attaching an image to explain the structure of the doc: Just some text ...
3
Solved
I'm working on a document storage. Therefore I plan to use SqlServer 2012 with file tables.
Now after some tests it seems like the SqlServer only indexes doc and not docx files.
I also installed t...
Haplography asked 1/4, 2012 at 11:10
5
Solved
I have around 10 word documents which I generate using open xml and other stuff.
Now I would like to create another word document and one by one I would like to join them into this newly created do...
Dustidustie asked 21/8, 2013 at 7:55
8
Solved
I'm generating some odt/docx reports via markdown using knitr and pandoc and am now wondering how you'd go about formating tables. Primarily I'm interested in adding rules (at least top, bottom and...
2
I have installed the compatibility pack for microsoft office. I understand it comes with a utility wordconv.exe which i could use to convert docx openxml formats to the old doc without word install...
2
Solved
I read this documentation on python-docx-template but I'm pretty confused on the table section. Let's say I have a docx template called Template.docx. Inside the docx file i have a table that only ...
Houseboat asked 28/2, 2019 at 15:13
5
Solved
There may be a scenario we need to get the text from word documents for the future use to search the string in the document uploaded by user like for searching in cv's/resumes and occurs a common p...
3
The following code tries to use landscape orientation, but the document is created as potrait. Can you suggest where the problem is?
from docx import Document
from docx.enum.section import WD_ORIE...
Photocopier asked 8/8, 2015 at 13:21
4
I have .docx file with many paragraphs and tables like:
par1
table1
table2
table3
par2
table1
table2
2.1 par21
table1
table2
I need to iterate all objects and make dictionary, maybe in...
Libb asked 24/3, 2015 at 18:57
1
Solved
I'm using python-docx to create a document with a table I want to populate from textual data. My text looks like this:
01:02:10.3
a: Lorem ipsum dolor sit amet,
b: consectetur adipiscing elit.
a:...
Tetragonal asked 16/2, 2022 at 22:55
4
I'm working on a project (asp.net, c#, vb 2010, .net 4) and I need to read both DOC and DOCX files, that I've previosly uploaded (I've done uploading part). Tricky part is that I don't have MS Offi...
7
Solved
hello I'm trying to validate an uploaded file type by finfo_file function.
But when a .docx file is sent, the file type is:
application/zip
instead of:
application/vnd.openxmlformats-officedoc...
Turbinal asked 6/7, 2011 at 10:49
1
Solved
How can I add custom formatting to docx files generated by Pandoc from, say, Markdown? For example, can I highlight text or center it? Can I restyle links, etc?
I know that I can change styles for ...
5
Solved
I am using the docxjs library. I am trying to add line breaks into the doc im generating but I'm unsure of how to do this. \n character gets ignored. How can i add line breaks to my doc?
The paragr...
Haphazardly asked 14/12, 2020 at 3:5
2
Solved
I am getting markdown text from my API like this:
{
name:'Onur',
surname:'Gule',
biography:'## Computers
I like **computers** so much.
I wanna *be* a computer.',
membership:1
}
biography col...
5
I want to be able to upload an MS word document and export it a page in my site.
Is there any way to accomplish this?
2
I have a bunch of word documents (docx) that details test case name as a paragraph title and the test steps in the subsequent table along with some other information.
I need to extract the test ca...
Shagbark asked 2/6, 2016 at 17:57
2
Solved
I currently have a program that generates a .docx document using the python-docx library.
Upon completing the building of the .docx file I save it into a Bytestream as so
file_stream = io.BytesIO()...
Nieberg asked 4/9, 2020 at 22:9
0
I want to get docx file from azure blob storage, convert it into pdf and save it again into azure blob storage. I want to use pypandoc to convert docx to pdf.
pypandoc.convert_file('abc.docx', form...
5
Solved
Using OpenXML, can I read the document content by page number?
wordDocument.MainDocumentPart.Document.Body gives content of full document.
public void OpenWordprocessingDocumentReadonly()
{
st...
Caldarium asked 12/10, 2016 at 7:29
2
I amd using pandoc to convert a standalone html (with not external dependency), with all required css and js merged in html itself. HTML has few svg graphs generated via javascript library
The sai...
Singletary asked 17/9, 2018 at 14:16
2
Solved
From what I have read, docx files are zipped collections of xml file. On Windows 7, (the only OS on which I have tried this), if I save a file, say f.docx from Word, then exit Word and change the f...
2
Solved
I've got a docx file, which is really just a zip but since the extension isn't .zip, vim fails to recognize that, and opens the raw data.
I've tried opening the file and setting the filetype to z...
© 2022 - 2024 — McMap. All rights reserved.