Click here to Skip to main content
Click here to Skip to main content

Word Control for .NET

By , 28 Jan 2003
 

Sample Image - winwordcontrol.jpg

Introduction

This control allows you to use MS Word 2000 in your own projects such as a windows form. Of course that's a little "dirty trick". But if you have some documentation to display and you want to use Word for it, here is the solution.

Background

I was working on an internal research project and we developed a tool to teach C++, and there was a problem about how to display the exercises. The main problem was, I had difficult formulas in these descriptions so the only possible solution was to convert the files to PDF or to another file format. With PDF I had a problem, because I couldn't edit the documents afterwards. So, I was looking for an ActiveX or .NET control for MS Word. Finally, I couldn't find one. So I decided to write one for .NET.

How to use the control?

It's almost too easy to use the form. You just need to add a link to the winwordcontrol.dll.  The steps are:

  1. Goto your Toolbox.

    Visual Studio Toolbox
     

  2. Click right. Select "Customize Toolbox".

    Toolbox Cutomizing
     

  3. Select the ".NET Components" tab.
  4. Select the winwordcontrol.dll using the file browse dialog. Click OK. After that you will find a new form in your toolbox called "winwordcontrol".

    Toolbox winwordcontrol/winwordcontrol

Drag and drop it just like any other form. The only thing you should know is how to control it. At this moment, there are four methods:

winwordcontrolinstance.LoadDocument(<string path>); 
With LoadDocument you can load all files Word can handle. Please specify the complete path! This is the only method that is probably useful for everyone. All the other methods are not necessary for normal use.
winwordcontrolinstance.CloseControl(); 
This method closes the actual document. This is mostly not necessary because LoadDocument() can handle multiple calls without calling CloseControl() before.
winwordcontrolinstance.PreActivate(); 
Preloading. This method should be used if you don't want to wait in the main program until Word is finished starting.
winwordcontrolinstance.RestoreWord(); 
Reactivates all the Menubars.

The control will automatically start Word if it's not already open and it will display the document.

How does this work?

The basic idea is to instantiate the Word application, as everybody knows, with:

wordInstance = new Word.Application();
Now we have the Word application in a separate window. How do we get this window in our control? The answer is ... Win32 API. We need to import some API functions from user32.dll as shown here:
[DllImport("user32.dll")]
public static extern int FindWindow(string strclassName, string strWindowName);

[DllImport("user32.dll")]
static extern int SetParent(int hWndChild, int hWndNewParent);

[DllImport("user32.dll", EntryPoint = "SetWindowPos")]
static extern bool SetWindowPos(
	int hWnd,               // handle to window
	int hWndInsertAfter,    // placement-order handle
	int X,                  // horizontal position
	int Y,                  // vertical position
	int cx,                 // width
	int cy,                 // height
	uint uFlags             // window-positioning options
);
		
[DllImport("user32.dll", EntryPoint = "MoveWindow")]
static extern bool MoveWindow(
	int hWnd, 
	int X, 
	int Y, 
	int nWidth, 
	int nHeight, 
	bool bRepaint
);
							
const int SWP_DRAWFRAME = 0x20;
const int SWP_NOMOVE = 0x2;
const int SWP_NOSIZE = 0x1;
const int SWP_NOZORDER = 0x4;
This is the most complicated part... because it's NOT documented at all. We need a Pointer to the Word window, so we use FindWindow to find it. What's the name of the window? - "Opusapp" Actually, I don't know what this name means, but it works perfectly.
wordWnd = FindWindow( "Opusapp", null);
So, now we can define our control as a parent to Word:
SetWindowPos(wordWnd, this.Handle.ToInt32(), 0, 0,
	this.Bounds.Width-20, this.Bounds.Height-20,
	SWP_NOZORDER | SWP_NOMOVE | SWP_DRAWFRAME );
Everything else should be pretty easy and it is well documented in the official documentation for the Word namespace.

Points of Interest

You may be interested in my other projects. Please visit my private homepage www.intercompu.de. If you use this stuff or if you use just parts of it, I would appreciate if you mention my name. ;-)

History

  • 23.01.03 First release
  • 25.01.03 Update minor changes (performance enhancement)

License

This article, along with any associated source code and files, is licensed under The GNU General Public License (GPLv3)

About the Author

Matthias Hänel
CEO
Germany Germany
Member
I am a developer with a Computer Science degree. I am programming Visual C ++ for over 7 year now and C# for about 3 years. If you want to know more about me please look at my homepage: www.intercompu.de

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
QuestionHelp, please !!! I can't execute your demo program in my computer. [modified] PinmemberDUBAR Fred29 Apr '13 - 4:53 
QuestionWhere to found 64 bit version DLL PinmemberPritesh Aryan28 Apr '13 - 17:29 
GeneralThanks a lot Pinmembermechanicalsoldier13 Aug '12 - 17:57 
Questionit doesn't work with me Pinmembermechanicalsoldier8 Jun '12 - 12:11 
AnswerRe: it doesn't work with me PinmemberBabasaheb Dhodad28 Mar '13 - 23:50 
Questionhow to ms word 2007 2010 ? Pinmemberubattulga23 May '12 - 18:51 
QuestionIf this leaves open WinWord.exe processes behind PinmemberBernhard23 Feb '12 - 5:42 
AnswerRe: If this leaves open WinWord.exe processes behind Pinmemberhjy121013 Nov '12 - 5:20 
Questionwhat are the interop.office,interop.word and interop.VBIDE Pinmemberpmore5915 Dec '11 - 20:46 
QuestionNot able to open other Word documents when I open a document with Windowrd Control PinmemberMurali Krishna Nakkella12 Oct '11 - 3:33 
GeneralMy vote of 5 PinmembermoslemB12 Sep '11 - 5:49 
QuestionPlease Help PinmemberMahendan2410 May '11 - 18:19 
GeneralWinwordcontrol in VS 2005 PinmemberCesar Almeida24 Jan '11 - 8:16 
GeneralRe: Winwordcontrol in VS 2005 Pinmemberdlz114 Aug '12 - 4:01 
GeneralDraw table in Extended richTextbox Pinmemberabhhy0923 Jan '11 - 19:28 
GeneralThe rpc server is not available PinmemberBeni Sec2 Jan '11 - 10:58 
GeneralRe: The rpc server is not available Pinmemberweilidai200124 Jan '11 - 2:39 
GeneralRe: The rpc server is not available Pinmemberbramazzotti3 Nov '11 - 4:44 
Remove the static declarations as discussed earlier.
GeneralRe: The rpc server is not available Pinmemberdlz114 Aug '12 - 3:58 
GeneralRe: The rpc server is not available Pinmemberdlz114 Aug '12 - 4:32 
Generalissue working in Vista Pinmemberprit_mahudha30 Sep '10 - 23:09 
Questionword2007 hide ribbon? PinmemberMember 724777618 Aug '10 - 1:27 
AnswerRe: word2007 hide ribbon? Pinmemberlifengxiaorong19 Jan '11 - 21:30 
Generalinsert a selected text in WinWordControl Pinmemberdavid_3434 Jul '10 - 21:42 
GeneralRe: insert a selected text in WinWordControl Pinmembergery1282 Aug '10 - 23:47 
Generalin WinWordControl Pinmemberdavid_3434 Jul '10 - 21:25 
QuestionHow to disable all toolbar Pinmembercsrangianges3 Jun '10 - 2:20 
Questionwhat is the handleName for Excel & Powerpoint? Pinmembergery12812 May '10 - 1:56 
AnswerRe: what is the handleName for Excel & Powerpoint? Pinmembergery12812 May '10 - 19:41 
GeneralRe: what is the handleName for Excel & Powerpoint? Pinmembergery1282 Aug '10 - 23:48 
QuestionSimilar control for Excel & Powerpoint Pinmembergery12810 May '10 - 2:45 
AnswerRe: Similar control for Excel & Powerpoint Pinmemberyltsa10 Aug '11 - 5:07 
Generalwinwordcontrol.dll without Office Pinmemberrarobbi3 Dec '09 - 5:24 
GeneralRe: winwordcontrol.dll without Office PinmemberRick Pingry30 Dec '09 - 14:41 
Questionlost form control after enter word doc. PinmemberMember 16519299 Sep '09 - 17:24 
AnswerRe: lost form control after enter word doc. PinmemberRick Pingry30 Dec '09 - 14:49 
GeneralStrange Fixes to Strange Problem PinmemberMember 361548728 May '09 - 16:23 
GeneralRe: Strange Fixes to Strange Problem Pinmemberweilidai200124 Jan '11 - 2:45 
GeneralRe: Strange Fixes to Strange Problem Pinmemberweilidai200124 Jan '11 - 2:51 
GeneralThanks! [modified] PinmemberMember #568413511 Mar '09 - 3:24 
GeneralHtml PinmemberMember 387334311 Mar '09 - 1:22 
GeneralIt doesn't work for Word 2003 Pinmemberfelixdisc3 Mar '09 - 7:02 
GeneralRe: It doesn't work for Word 2003 Pinmemberfelixdisc4 Mar '09 - 6:55 
GeneralAnother approach using standard .NET Webbrowser component PinmemberHoward Jachter13 Jan '09 - 13:59 
GeneralRe: Another approach using standard .NET Webbrowser component PinmemberBen Robbins4 Feb '09 - 21:27 
GeneralRe: Another approach using standard .NET Webbrowser component PinmemberHoward Jachter4 Feb '09 - 21:53 
GeneralRe: Another approach using standard .NET Webbrowser component PinmemberHoward Jachter4 Feb '09 - 22:02 
Questioncan i use this control in web form Pinmemberbhushannankar2 Jan '09 - 19:28 
Questionhow to disable all toolbar PinmemberMember 357101322 Sep '08 - 16:43 
AnswerRe: how to disable all toolbar Pinmemberwhylazy21 Oct '12 - 16:49 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web01 | 2.6.130516.1 | Last Updated 29 Jan 2003
Article Copyright 2003 by Matthias Hänel
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid