msword

how to open word document in ie without open / save dialog in java applet

how to open word document in ie without open / save dialog in java applet ...

Mass conversion of Word 2003 to Word 2007 without using Word automation?

Is there a way to efficiently convert Word 2003 documents to Word 2007 without using ole automation? I'd like to use DotNet if possible. ...

Scan a bunch of Word documents for a given phrase

How can I scan a bunch of Microsoft Word (2003) documents? I am searching for a certain phrase in the documents and want to return the file names of those which contain the phrase. A code sample would be especially helpful. ...

Printing Certain Pages in MS Word

Using MS Word, is there a way to simply print only those pages which contain a certain search string. For example, I have a few hundred pages of transaction summaries and there is a certain string that reoccurs through out the transaction report. I can't throw a regular expression into the pages to print dialog or something? ...

Word Automation InvalidCastException RPC / COM Exception

Hello I'm developing word automation application and I'm facing serious issue with unexpected RPC/COM cast exception [System.InvalidCastException: Nie można rzutować obiektu modelu COM typu 'System.__ComObject' na typ interfejsu 'Microsoft.Office.Interop.Word._Application'. Ta operacja nie powiodła się, ponieważ wywołanie...

html to word in php (problem in open office output)

I have this simple code in php: <?php header("Content-type: application/vnd.ms-word"); header("Content-Disposition: attachment;Filename=kid_tag.doc"); echo '<table cellspacing="0" cellpadding="0" border="0" width="8.4cm"> <tr> <td colspan="3" style="text-align: right; height: 0.6cm">Nursery</td> </tr> <tr> <td ...

How to fetch data from Web Service in VBA-Word?

How to fetch data from Web Service in VBA-Word? ...

Creating Microsoft Word (.docx) documents in Ruby

Is there an easy way to create Word documents (.docx) in a Ruby application? Actually, in my case it's a Rails application served from a Linux server. A gem similar to Prawn but for DOCX instead of PDF would be great! ...

Programatically converting from MS word to Excel

Is there anyway to problematically take a MS Word file and convert to excel. (Obviously, word would to guess where to put stuff). Any language would be fine ...

Best way to extract data from Microsoft Word

The release notes of a software have some important data that I would like to extract in every release. Is there a way to extract certain information from Microsoft Word? The application that I am thinking of would be written in C#, but I am okay if it is any other solution. ...

Opening/Activating Word Documents in a VBA macro

I'm hoping a VB/VBA expert can help me out. Consider the following: The user opens a document in Word 2003, and within the Normal.dot AutoOpen macro, we look at current document, and if it has been opened by clicking on a link on a webpage, and meets certain other application specific criteria, close the streamed 'copy' and open the...

Batch print Word documents .Net?

Is it possible to print a batch of Word documents all at one time via .Net (c# or VB, 2.0, 3.0, 3.5... language and framework above 2 doesn't matter to me)? For example, I've got a local directory that contains several word documents... I can iterate through the list and call the PrintOut() method, but I believe that sends several print...

Can you do complex editing of Word Documents in a browser?

A friend of mine wants to have an application where people can upload documents in Word (or text) format, and then allow people to make edits to those documents within a browser. Is there any mechanism that would support adding text "bubbles" for adding comments? Either floating, or off to the side. Being able to save back to Word for...

Word automation on the server

We have a requirement that our web app will do a mail merge and generate some Word documents. Of course this is very easy to do using Word automation but is not recommended by Microsoft http://support.microsoft.com/kb/257757. "Microsoft does not currently recommend, and does not support, Automation of Microsoft Office applications ...

How can i convert a php page into .doc file with php

Recently i worked in a project. On this project I need convert page into a Microsoft word document (.doc file) and offer the document for download, all using PHP. But I can't solve this problem. Please help me. Thank You very much, Arif ...

How do I get an http session created by url in word document to be used when a link in the browser is clicked

I have a servlet based application that creates a session and stores some information the first time it is accessed. This information is used in subsequent pages. The process runs into trouble if the initial url is clicked from inside a msword document. The servlet creates a session and sends the response back. The response is displa...

Word Mail Merge Fields

I have not worked with Mail Merge fields before and everything I find requires you to select a data source prior to be able to insert merge fields. All I want to do is place fields on the word document and not merge it down until its consumed by the code. I essentially am creating document templates. How is this done in word? ...

Close MS Office C# Console

Hey Everyone.. I'm writing an automated test to determine whether or not rtf files are successfully opened by MS Word. So far I looping through all the rtfs within a given directory and opening them. Later I will have to catch exceptions to generate a report (log the file name that crashed word). I am processing a large number of files...

Using Process.Start to print documents without showing Word

Hi All I am using the following code to print a word document from a C# app. ProcessStartInfo info = new ProcessStartInfo(myDocumentsPath); info.Verb = "Print"; info.CreateNoWindow = true; info.WindowStyle = ProcessWindowStyle.Hidden; Process.Start(info); This works fine Wor...

Editing Word Document

Is it possible to edit and insert entries in a word document that is hosted on SharePoint? I need to fill in a reviewer's table based on who made the last change to the document. I know I would use an event receiver to do this, but how do I interact with the word document interactively? ...