Tagged Questions

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

learn more… | top users | synonyms

3
votes
4answers
110 views

How should I be saving .doc documents to a SQL Server database

I am saving a .doc file to a SQL Server database as varbinary(max) using the C# code below. I am able to save the file, but when I retrieve the file back and want to display the contents on the web ...
3
votes
3answers
629 views

How to index and search .doc files

I have an application that needs to have .doc files uploaded to it. These documents should then be index and the whole collection of documents should be searchable. This will run on a Windows Server, ...
2
votes
3answers
263 views

Is there a way to convert .doc files to pdf or jpg on a host like GoDaddy?

And can this be done without a really expensive solution like Apose? That costs way more than I can possibly spend. Essentially, I need to be able to let someone upload a document and retain its ...
2
votes
2answers
224 views

Python - Moving entire text between two .doc files

I have been having this issue for a while and cannot figure how should I start to do this with python. My OS is windows xp pro. I need the script that moves entire (100% of the text) text from one ...
2
votes
4answers
2k views

Quickly Convert (.rtf|.doc) Files to Markdown Syntax with PHP

I've been manually converting articles into Markdown syntax for a few days now, and it's getting rather tedious. Some of these are 3 or 4 pages, italics and other emphasized text throughout. Is there ...
1
vote
2answers
223 views

How do I display a Word document in a rich-edit control?

I'm building a Delphi app and I want to read a Word document and display it in a rich edit. How can I do that?
1
vote
1answer
192 views

opening a word document in php (.doc)

I want to open a .doc file and print out using php (or only count lines and words). I tried with the COM library, but it didn't work (I'm using linux server). I also tried installing Antiword but it ...
1
vote
2answers
66 views

Creating an HTML form from a .doc

I have a Microsoft .doc document of a form that I am currently having people fill out on paper. I would like the form to be fillable as an html form. What would be the easiest way to make this ...
1
vote
1answer
136 views

Reading documents in .NET

Easy question I guess, but can I open any file formats with Word interop that Microsoft Word itself supports? My task looks very simple, I need to read text, only text, from any type of documents ...
1
vote
2answers
560 views

how to programmatically (c#) find and replace in doc and docx file in share point library

My job is to do a find and replace in .doc and .docx files which are saved in sharepoint document library. i have to alter all the documents in the document library by doing find and replace. please ...
1
vote
2answers
561 views

Reading .doc file without launching MSWord

I'm trying to open .doc file and read its content. But i can't find any way how to do this without launching MSWord. Now I have following code: Microsoft.Office.Interop.Word.Application app = ...
1
vote
4answers
1k views

Possible to output to .doc format using Qt?

I am writing a program using Qt. I want it to output to .doc to preserve formatting but all that is supported by Qt is plain text, ODF and HTML formats. ODF and HTML will preserve the formatting but ...
1
vote
1answer
932 views

Reading a .doc or .docx file in asp.net c#

i'm just workin on a project which requires to read word document. i want to know how to read the *.doc file character by character.... how can i do it? thanx
1
vote
1answer
1k views

Convert doc file to pdf in iphone

i would like to know is there any way to convert .doc or any file to .pdf file in iphone app. Thanks in Advance..
1
vote
3answers
720 views

find a result from a .doc type that store in a varbinary(max) column

i want to write a query with Full-Text-Search on a column with varbinary(max) type that stored a .doc/.docx(MS-Word) file. my query must returns records that contain a word in stored file. is this ...
0
votes
3answers
145 views

getting error for opening MS word doc in IIS 7,

I'm developing some pages by Asp.Net which contains opening and reading some MS word docs, it works well by my VS 2010 on its own localhost but when I put the files under wwwroot and run the pages by ...
0
votes
0answers
38 views

Save document with Zoho remote api

I am using Zoho remote api to open and view a .doc file. I want now to convert the .doc file into a pdf file and save into my hosting account. Thay have hier a small tutorial but i don't get it right ...
0
votes
1answer
73 views

Creating an MS Word document in an Android App

I am working on a client project for an android app and wanted to confirm if the designed solution appears to be utilizing the most appropriate technology and resources. The application gathers data ...
0
votes
1answer
81 views

How to generate a .DOC file in PHP with a Watermark

Is this even possible? I know it's possible to generate watermarks in PHP. Also, is there a site with a list of HTML tags that can be used in a doc file? I'm basically wondering how far you can go in ...
0
votes
0answers
25 views

Processing a word document in a watched folder

I have a watched folder set up for an applicaion I am creating. When you drop a document in it works as you would expect and moves the document. My problem is this, if you save the document into the ...
0
votes
1answer
53 views

.doc support in mac

I created a Word document with an image in my windows pc and saved it as mine.docx.Then i transferred it to my mac.When i opened it there the image just doesnt show up in the document.Doesnt mac ...
0
votes
1answer
192 views

problems parsing a microsoft compound document [SOLVED]

EDIT: (secid + 1) * 512 should be (secid + 1) * sec_size hi. having a bit of a struggle wrestling with the compound document format. I'm working in C at the moment but i am having problems with ...
0
votes
2answers
249 views

.docx to html friendly text

I need a way to strip the uncompatible characters in the .doc/.docx files my clients send me for content. Right now I've been relying on find/replace which is really annoying. How do you take your ...
0
votes
1answer
340 views

Reading data from .doc or .docx and inserting into db

A vendor is providing content which needs to be inserted into the db. The content is basically questions with options and explanations. An example is below. ========================================= ...
0
votes
2answers
267 views

I cant open .doc files from my browser on my website

I cant open .doc files from my browser on my website (php) rather my 404 page, opens could it be my htaccess setings?
0
votes
3answers
2k views

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 ...
0
votes
2answers
246 views

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 ...
-2
votes
1answer
282 views

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 = ...