word

Rich-Text Editing of Word Documents on the Web via ASP.NET

My users upload Word 2007 documents to our site and I'd like to load them into a rich edit control of some kind so the users can make modifications/ comment, etc. What mechanisms are available to: load the Word document via ASP.NET, and parse/format/display the document in a rich editing control? Also, what kinds of rich editing con...

COM ApplicationClass.Documents.Open thread

Hi , I am using the Interop word ApplicationClass.Documents.Open method to open a word document. In my application when i use the below statement it hangs as in the IE shows its still loading but it never does anything. _Document aDoc = WordApp.Documents.Open(ref fileName, ref oMissing, ref readOnly, ref oMissing, ref oMissing, ref oMis...

Vba - On error doesn't work? Reading registry value

Hi, this is strange, I've got a macro with an array containing several registry keys. And I want to insert the values of these into predefined bookmarks in a Word document. This works great if the key is there, but if it isn't, I want the code to skip that and continue trying the next one in the array. I've got the code that looks l...

How can I insert OpenXML-Word files into another document programmatically in Word 2003

Hi, I need to insert an OpenXML Word document into another document in Word 2003 inside a VSTO 2005 customization. With the old WordML (2003) documents I used Selection.InsertXML() for this, but OpenXML or the flat XML format (Flat OPC) of it does not work with this method in Word 2003 even if the compatiblity pack is installed (no su...

Filling a form with C#

I am researching filling out a form programatically. I have seen this question which is pretty similar to what we want to do. But I have a few other questions. Is there any examples of this online to get me started? We have some areas where we have circle this option or X that option. How would that be handled? The form itself is in ...

Rendering Word document without word

Are there any solutions for Rendering MS-Word 2003 Documents (WordML) into PDF without MS-Word? I found Aspose.Words which seems good but has some problems. Is there any other solution out there? ...

Populate values in Word Document with PHP

How do you open a word document, fill it with certain values in certain places and then echo it for download all in PHP? ...

How do I bind a macro to a key in Word 2007 without recording a new macro?

As the title so eloquently put it, I need to know how (or if it's even possible) to bind a macro to a key in Microsoft Word 2007 without recording a new macro each time. I find myself writing new macros directly in code and then not being able to bind them to a key. Or I might just want to rebind a macro to another key. ...

Splitting /proc/cmdline arguments with spaces

Most scripts that parse /proc/cmdline break it up into words and then filter out arguments with a case statement, example: CMDLINE="quiet union=aufs wlan=FOO" for x in $CMDLINE do »···case $x in »···»···wlan=*) »···»···echo "${x//wlan=}" »···»···;; »···esac done The problem is when the WLAN ESSID has spaces. Users expect to set wlan='...

What sorting technique will you use?

If you have 65536 random English words with length 1-32 per word that you need to count for appearance and sort based on dictionary or appearance rank, how do you structure the data and what sorting technique would you use to process it the fastest? ...

genarate a thumbnail of a word document c#

i have a website where users upload word documents and i want to display thumbnails of these word documents If anyone of you knows how to display the first page of a word file as an image using c# please tell me. Also if you a trusted .Net Library (convert word files to images)that requires no office interop that would be great Thank...

MailMerge: No fixed width font?

Hi all, I am trying to send data to a specific MergeField. The data are sent correctly. Each line of the data has for specific characters. For example the data to the field may be: 12345 FIRST\nABCDE.F SECOND (it cannot get the newline so i just so it through character \n) Now in the printed document each character h...

Word VSTO swallows exceptions at runtime without debugging?

Place this code somewhere in a Word document level VSTO solution outside of ThisDocument_Startup (create a ribbon button, with a click event): int zero = 0; int divideByZero = 10 / zero; Start without debugging (Ctrl + F5), Result: Exception is swallowed, the rest of the code fails silently. The exception will be visible if placed in...

how to use the printer from C# ?

How can I launch the print of a document from C# .NET application ? the word document already exists in the hard drive. I just wish to start printing that word document upon the button click event. ...

Insert text into table in Microsoft Word (C++, Visual Studio 2005)

Hello. I've managed to figure out how to create a Word document using PIA and C++ in Visual Studio. But I can't figure out how to write text to the table cells. I would appreciate any help. Thanks EDIT: Thanks for your comments. I've finally managed to figure it out: I can loop through the cells in the table, select the cells with Cell...

Need Pure/jQuery Javascript Solution For Cleaning Word HTML From Text Area

Hey folks. I know this issue has been touched on here but I have not found a viable solution for my situation yet, so I'd like to but the brain trust back to work and see what can be done. I have a textarea in a form that needs to detect when something is pasted into it, and clean out any hidden HTML & quotation marks. The content of t...

word document in HTML page does not display toolbars

I have a requirement to display dynamically generated word document on the server in an html page I tried using the OBJECT tag and the document was indeed displayed correct. But the toolbars like print, file etc are missing. Note: secondary requirement is to enable the user to print the contents of the word document displayed, so the pr...

Converting VB.NET code to VBScript

I have this snippet of VB.NET code that I want to convert to VBScript. It basically starts Microsoft Word, displays the Open dialog and mail merges the selected document. Any help will be highly appreciated. Dim oMissing As Object = System.Reflection.Missing.Value Dim oEndOfDoc As Object = "\\endofdoc" Dim oFalse As Object = False 'St...

PHP new COM("word.application") SaveAS causes "Disk is Full" Error

Hello, I have a PHP script running on XAMPP in Windows XP that will open a .doc file and then save it as a different copy. This was working fine earlier on, but out of nowhere the error message keeps appearing. $path = "c:/xampp/htdocs/"; com_load_typelib('Word.Application'); $word = new COM("word.application") or die("Unable to instan...

How can I make a part of text bold in an MS Word table cell?

Hi all, I have C# application which uses an MS Word document. I have tables and I need to meed make some of the text in a cell bold. Is there a way to do it? Thanks all in advance. ...