Click here to Skip to main content
6,629,377 members and growing! (20,365 online)
Email Password   helpLost your password?
Enterprise Systems » Office Development » Microsoft Word     Intermediate

Integrating Microsoft Word in your .NET applications

By Anup Shinde

This article explains how you can integrate Microsoft Word in your .NET applications.
C#.NET 1.1, Win2KVS.NET2003, Dev
Posted:30 Sep 2005
Views:141,843
Bookmarked:177 times
Announcements
Loading...
 
Search    
Advanced Search
Add to IE Search
printPrint   add Share
      Discuss Discuss   Broken Article?Report  
44 votes for this article.
Popularity: 7.65 Rating: 4.66 out of 5
2 votes, 4.5%
1

2
2 votes, 4.5%
3
5 votes, 11.4%
4
35 votes, 79.5%
5

Introduction

This article explains how we can use Microsoft Word in our .NET application. This will enable you to use your favorite word-processor within your .NET application.

Background

I had been working on migrating and improving different transcription workflow applications (medical and legal) in .NET. The biggest problem that these transcriptionists faced while transcribing was that of the editor. All of them used an HTML editor which is a part of the Windows Form application. In the period of 4-5 years of its usage, the clients started using MS-Word. Therefore they wanted us to send Word documents as output, instead of the HTML documents sent earlier. The workflow was changed by doing this manually. We wanted to have a Word control similar to the HTML editor to become a part of the application. Unfortunately, there is no such way to do that.

While searching at Google, I came across a project which showed the trick of making any window a part of your application. This article is based on the article posted at CodeProject. Just when I was writing this article, I found another article suggesting the same trick.

Using the code

I would highly recommend reading the base-article mentioned in the Background section.

When we contain a window within our application, we do not want the window to be allowed to close through its Close (X) button. Similarly, we do not want the Minimize, Maximize and Restore buttons to work.

One way to solve this problem is to hide the title bar. This can be done by using the SystemInformationn class, as shown below:

int borderWidth = SystemInformation.Border3DSize.Width;
int borderHeight = SystemInformation.Border3DSize.Height;
int captionHeight = SystemInformation.CaptionHeight;
int statusHeight = SystemInformation.ToolWindowCaptionHeight;

// Move the window in the container so that the 

// container borders hide the window's title bar.

MoveWindow(
  wordWnd, 
  -2*borderWidth,
  -2*borderHeight - captionHeight, 
  this.Bounds.Width + 4*borderWidth, 
  this.Bounds.Height + captionHeight + 4*borderHeight + statusHeight,
  true);

But what would happen if the user presses "Alt+Spacebar"? This will open up the System menu for the user, where the user can select Restore, Minimize, Close, etc. We don't want even this to happen. We can disable this System menu using the Windows API. This is shown below:

// We want to remove the system menu also. 

// The title bar is not visible, but we want to avoid 

// accidental minimize, maximize, etc ..by 

// disabling the system menu (Alt+Space) 

int hMenu = GetSystemMenu(wordWnd,false);

if(hMenu>0)    
{ 
  int menuItemCount    = GetMenuItemCount(hMenu); 
  RemoveMenu(hMenu, menuItemCount - 1, 
                               MF_REMOVE    | MF_BYPOSITION); 
  RemoveMenu(hMenu, menuItemCount - 2, 
                               MF_REMOVE    | MF_BYPOSITION); 
  RemoveMenu(hMenu, menuItemCount - 3, 
                               MF_REMOVE    | MF_BYPOSITION); 
  RemoveMenu(hMenu, menuItemCount - 4, 
                               MF_REMOVE    | MF_BYPOSITION); 
  RemoveMenu(hMenu, menuItemCount - 5, 
                               MF_REMOVE    | MF_BYPOSITION); 
  RemoveMenu(hMenu, menuItemCount - 6, 
                               MF_REMOVE    | MF_BYPOSITION); 
  RemoveMenu(hMenu, menuItemCount - 7, 
                               MF_REMOVE    | MF_BYPOSITION); 
  RemoveMenu(hMenu, menuItemCount - 8, 
                               MF_REMOVE    | MF_BYPOSITION);
  DrawMenuBar(wordWnd);
}

You may want to have only a few command bars in the MS-Word window. E.g. you may not want the "Menu Bar" (which is also a command bar in MS-Word). This is shown below:

[Editor comment: Line breaks used to avoid scrolling.]

objWinWordControl.document.ActiveWindow.Application.
                  CommandBars["Menu Bar"].Enabled=false;

The "Standard" command bar in MS-Word has the "New" and "Open" buttons. We want to disable these buttons also. This can be done as shown below:

[Editor comment: Line breaks used to avoid scrolling.]

wd.ActiveWindow.Application.CommandBars["Standard"].
                              Controls[1].Enabled=false;
wd.ActiveWindow.Application.CommandBars["Standard"].
                              Controls[2].Enabled=false;

In some cases, you will need to have the "Menu Bar", but without all the sub-menu options. You can disable those options by using the CommandBarPopUp class:

Office.CommandBarPopup c;
c = (Office.CommandBarPopup)wd.ActiveWindow
                         .Application
                         .CommandBars["Menu Bar"].Controls[0];
c.Controls["Close Window"].Enabled=false;

The attached code

The attached code is part of a larger transcription workflow. It is developed using .NET 1.1 Framework and MS-Word 2000.

In most transcription applications, you have a scenario like "Transcription --> QA1 --> QA2.....". In such cases, you will have to give an error-marking facility to the QAs. I have just shown a very basic demo. Say, when a transcript goes from QA1 to QA2, the errors marked by QA2 should not be shown. Therefore, we need to remove error-marking before displaying the transcript to QA2.

We need to have specific kinds of templates for different clients of the transcription division. These templates can be pre-configured and used to create new documents (through the "LoadDocument" method). An example of this is shown through the "Load Document" button.

In most cases, you will require that a part of the document being transcribed be automatically filled up. E.g. the client's ID, current date, record number, etc. This kind of information comes from the database, therefore can be automatically filled up. I have accomplished this using "Bookmarks" in the Word document. A sample can be seen using the "Sample.dot" file.

You can do much more than what is shown in the attached code. Please find more about Microsoft Word Automation and Windows APIs at MSDN.

Enhancements

While this application only integrates (contains) MS-Word in a .NET application, it was quite interesting to do so with other applications as well. We did that with an audio player and found that the concept of containing windows was really useful the second time too.

Please feel free to send me your suggestions here or email me at anup@micromacs.com. The article's original page can be found here.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Anup Shinde


Member
Microsoft Certified Solution Developer (.NET) working with a software development company in India.

Achieved Masters in Computer Applications and Bachelor degree in Electronics

Areas of interest: AI..specifically Genetic Algorithms, Machine learning, automation engineering, user interface designs, human computer interaction, biotechnology, nanotechnology, networking technologies (computers as well as social)....anything where my brain can do some real research Smile


Occupation: Web Developer
Location: India India

Other popular Office Development articles:

Article Top
You must Sign In to use this message board.
FAQ FAQ 
 
Noise Tolerance  Layout  Per page   
 Msgs 1 to 25 of 87 (Total in Forum: 87) (Refresh)FirstPrevNext
GeneralThanks a lot Pinmemberrostamiani21:49 6 Nov '09  
Generalproblem when unhide Menubar PinmemberKernel100120:24 30 Oct '09  
GeneralHow to open more word document in one container ? Pinmemberjosephlee071718:59 13 Apr '09  
QuestionProblem with SAVE (not save as) document!!! PinmemberHero from H.U.T19:09 9 Apr '09  
GeneralHow to find the cursor text Pinmemberspprofile20:43 30 Mar '09  
GeneralExcel sheet is opening seperately PinmemberMember 47245121:42 15 Jan '09  
GeneralWindows is searching for ConvertDoc.exe Pinmemberbobk5445:50 12 Jan '09  
QuestionActiveX? Pinmemberreza_arab19:29 23 Nov '08  
Questionhi Pinmemberkazim bhai7:39 29 Oct '08  
GeneralDisable Close [X] on menu bar PinmemberMember 162871918:17 22 Sep '08  
Questionopening new word document PinmemberMember 162871921:50 14 Sep '08  
GeneralAny way we can macros in the word file to run here? PinmemberMember 42095633:53 18 Jul '08  
GeneralCursor Position Problem PinmemberGoje062:58 14 Jul '08  
GeneralGood [Help Me with Excel container Like This PinmemberSachin Dubey22:46 17 Jun '08  
GeneralWell Done PinmemberJordanCode9:34 3 Jun '08  
Generaldisable shortcut keys PinmemberMember 23392701:16 2 Jun '08  
GeneralCan we use it For Web Applications? PinmemberAmitChampaneri0:52 15 May '08  
GeneralRe: Can we use it For Web Applications? PinmemberAnup Shinde4:58 15 May '08  
GeneralExcellent! Pinmember Muammar© 1:18 5 May '08  
Generaldeactivate or hide save button of this control... in VB.NET PinmemberJats_4ru2:25 17 Apr '08  
GeneralRe: deactivate or hide save button of this control... in VB.NET PinmemberMember 23392701:11 2 Jun '08  
Generalintegrating ms word & windows form Pinmembermedikondu.bhaskar18:22 20 Feb '08  
GeneralUse DSOFramer instead of this tutorial .. much simpler ... much better Pinmemberjosephjc22:18 18 Oct '07  
GeneralIntegrating Microsoft Word in your .NET application Pinmemberrajesh_ncc22:08 27 Sep '07  
Generaladdin not working Pinmemberspeedyc861:17 20 Aug '07  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 30 Sep 2005
Editor: Rinish Biju
Copyright 2005 by Anup Shinde
Everything else Copyright © CodeProject, 1999-2009
Web22 | Advertise on the Code Project