Questions tagged [.doc]

A file extension for word processing documents; most commonly for Microsoft Word.

"doc" (an abbreviation of 'document') is a file extension for word processing documents; most commonly for Microsoft Word. Historically, the extension was used for documentation in plain-text format, particularly of programs or computer hardware, on a wide range of operating systems.

This document format has been superseded by the "docx" format as of Microsoft Word 2007 going forward.

155 questions
0
votes
1 answer

display *doc,*xls,*pdf in browser window instead

i want to display *doc,*xls,*pdf in browser window instead of their respected application. i have tried following code, but no luck it prompt me dialog for save/open instead of displaying in browser //Set the appropriate ContentType. …
Gourav Goyal
  • 37
  • 1
  • 1
  • 4
0
votes
4 answers

how to create .doc file using java?

Can anyone tell me how to create doc files using java? I know, there's a POI library, but it seems like it can save only simple documents. You can read anything you wish, but you can't save it all back again. Or may be i missed something? How can i…
mykola
  • 1,736
  • 5
  • 25
  • 37
0
votes
0 answers

IE7/8 won't open .XLS or .DOC file from server - Only for few users

We have a lot of Excel, Word and PDF files on our intranet site for all the employees to download. For some users who have Windows XP Prof and IE 8, they can't open .doc or .xls file types but they are able to open PDF files. It works fine in…
Ram
  • 661
  • 2
  • 12
  • 37
0
votes
2 answers

How to create image (or other "read-only" format) from .doc

Anyone know of a way to convert a .doc with mail-merge fields into an image in C#? Basically we want to be able to display a "read-only" version of the document. This can be an image or some other read-only format if anyone can think of one.
Jared
  • 7,165
  • 6
  • 49
  • 52
0
votes
1 answer

Convert/Create readable document in xml

I am creating an Android App (in eclipse) which I need to create a document - a letter. I'm writing it i xml and I have been able to produce .xml and .doc both of which MSWord will happily open, which is fantatsic but I really need also to be able…
xhedgepigx
  • 340
  • 1
  • 2
  • 19
0
votes
0 answers

Display xml as a .doc in web browser

I have a .doc that I saved out as an xml. I want to display this xml in a .doc format on a web browser. The reason I want to load the xml instead of the original .doc is because there are key tags that I've placed in the document that I want to…
Mitchell
  • 253
  • 1
  • 5
  • 16
0
votes
1 answer

"invalid character in the given encoding"....Hebrew characts in .doc file

the subject error occurs when I try to upload a .doc file in Hebrew language to a SharePoint list. XmlDocument document = new XmlDocument(); if (_view.DocumentStream != null) { …
vibon82
  • 1
  • 1
0
votes
2 answers

OpenXML converting .docx to .doc

I've successfully implemented OpenXML that takes the bookmarks within a document and replaces them. Unfortunately it only works with .docx and from what I understand .doc is not compatible with the OpenXML format. So, what I'm wondering is if I can…
Mitchell
  • 253
  • 1
  • 5
  • 16
0
votes
1 answer

Reading the doc file with the use of Apache POI & docx4j

Reading the doc file with the use of Apache POI & docx4j. i had read the doc file with the use of docx4j & even with Apache POI but the problem is when i extract the data from it it only return TEXT not Images. & even i didn't any notation of new…
Wolverine
  • 481
  • 2
  • 10
  • 23
-1
votes
1 answer

Can you convert .docm files to .docx using R?

I have about 100 .docm files that I need to convert to .docx. I am doing this because I am importing tables from the .docx files using the officer library (this does not work with .docm).
dunbar111
  • 185
  • 1
  • 8
-1
votes
1 answer

Using PHP create a Word document in Landscape

I use this code to create a MS Word document; however, I want to make it in landscape. Does anybody know how to it? Thanks $fp = fopen('test.doc', 'w+'); $str = "Content"; fwrite($fp, $str); fclose($fp);
Khoa Nguyen
  • 1,319
  • 7
  • 21
-1
votes
3 answers

Does fin in C++ work with .doc files?

I used fin to read in a .doc file, and then store all the text in a string. When I tried printing the string, I just saw unknown characters. When I copied the contents of the .doc file into a .txt file and then read the .txt file in using fin,…
-1
votes
3 answers

Create a CSV file with Java is impossible (Access Denied)

I'm trying to create a CSV file in a Java program. No matter where the file is located, I've this error: Exception in thread "main" java.io.FileNotFoundException: (Access is denied) at java.io.FileInputStream.open(Native Method) …
Jerem Lvz
  • 1
  • 1
-1
votes
1 answer

Read a Word file in shell unix

Is it possible to read a .doc in order to obtain some informations in a shell unix ? is yes, how can we do this ? Thanks for you answers! Regards,
gaby
  • 51
  • 1
  • 1
  • 5
-1
votes
1 answer

How to view/open .doc file from sd card inside android app

I have requirement to view .doc file inside android app, I have gone through many related post but still not clear what to do. I have tried : aspose word api for android I got api for creating .doc file but there is not a specific method to view…
Amar1989
  • 502
  • 1
  • 3
  • 17
1 2 3
10
11