After uploading a microsoft word document with embedded word doc all the embedded word doc are converted into imageds - ms-word

Does anyone know if there is any open bug when we upload a ms word doc (with embedded word doc file) all the embedded word docs are converted into images . I am uploading this on a ms teams channel.

Related

Update docvariable or docproperty in Word online

Is ther a way to update docvariable or docproperty of a Word document when opening in the Word online by the microsoft graph API or another API.
I do this in Word for desktop using C# code, but I need to do this in Word online too.
It can't be done in Word on-line. If you had an Office JS add-in you might be able to change document properties (but no DocProperty fields that reflect those values). The Word JS APIs do not access the Document Variables, however.
But you should be able to do it on the closed file (before it's opened in Word on-line, for example) by leveraging the Word Open XML file format. There are numerous libraries to work with it. Microsoft's is the Open XML SDK (free, as a .NET Framework / Visual Studio extension) which can access all content of Office files (except VBA binaries).

How search in doc file (word document) in iOS

I'm working in a project to preview a doc file and search on it. I successfully could open doc file using QLPreviewController but I don't know how to search for words or any thing in this file in iOS
Thanks
Firstly convert doc or docx file into PDF using iOS-htmltopdf
Now there many API available for PDF word searching functionality such as PDFKitten.
Hope its helpful in right direction........

Convert Word document of MS WORD 2003 To Tiff images

I have a word document created using MS Office 2003.Now i developed a web application using ASP.net in which i used a file upload control to upload word document files.My requirement is to convert the uploaded word document to tiff/jpg and displayed in iframe.please tell me the possible ways to achieve this.
If you have heard of Aspose, they have simple feature to achieve this.

Data loss in conversion of documents from .odt to .doc

I have a plugin developed for both MS word and Open Office.
Using the open office plugin it is possible to add a set of Marked references (using XNamed) the xml in content.xml for this mark is:
-<text:p text:style-name="Standard">
<text:reference-mark-start text:name="abc"/>hello
<text:reference-mark-end text:name="abc"/>
</text:p>
when I save this document as .doc or .docx and open it in MS word, the mark reference is lost and only plain text (hello) appears. I want to be able to preserve some information like "abc" here.
Is there a way I can programatically change the xml while open office is converting it to doc format, or while ms word is opening the converted document?
Is there a way(in ms word) to "Realize" that the document being opened was created or edited using open office?
I've used C# interop to develop the word plugin and java UNO for open office.
I ended up providing a "compatibility mode" button in my plugins,for modifying the document before saving and after opening...couldnt find a better solution.

Write MS Word Doc using itextsharp library

Can I write MS Word document using iTextSharp library? If yes, please give me sample code.
No, you can't.
According to Wikipedia, iTextSharp is a .NET port of iText, a free and open source library for creating and manipulating PDF files in Java.
You can use it to create pdf documents, but not MS Word documents.