BUG: Cannot edit Word document in OLE or WebBrowser control (202476)



The information in this article applies to:

  • Microsoft Word 97 for Windows
  • Microsoft Word 2000

This article was previously published under Q202476

SYMPTOMS

When using the OLE control or WebBrowser control on a form in Microsoft Visual Basic to view a Microsoft Word document, you are unable to type any text into the Word document.

CAUSE

This problem occurs if a separate instance of Microsoft Word is running and you switch focus to that instance of Word. When you switch focus back to your Visual Basic form, the Word document in the OLE control or WebBrowser control can no longer be edited.
A workaround for this problem is to activate the Word document in its own Window, rather than using in-place activation. To accomplish this, set the MiscFlags property of the OLE control to vbOLEMiscFlagDisableInPlace, or 2. For example:
OLE1.MiscFlags = vbOLEMiscFlagDisableInPlace
				
Now when you double-click the OLE control, the Word document is activated in its own window inside Microsoft Word. To programmatically activate the Word document in its own window, use the DoVerb method as follows:
OLE1.DoVerb vbOLEOpen
				

MORE INFORMATION

Steps to reproduce the behavior

  1. Start Visual Basic and create a Standard EXE project. Form1 is created by default.
  2. Add the OLE control to Form1. When the Insert Object dialog box appears, select Microsoft Word Document and OK. This embeds a new Word document into the OLE control.
  3. Press the ESC key to deactivate the Word object, then press the F5 key to run the project. Form1 appears.
  4. Double-click the OLE control to in-place activate the Word document.
  5. Type some text into the document.
  6. Start Microsoft Word 97 or 2000.
  7. Click back to the Visual Basic form.
  8. Try to type more text into the document. Result: You cannot type text into the document.

STATUS

Microsoft has confirmed that this is a problem in the Microsoft products that are listed in the "Applies to" section.

REFERENCES

If you are using the WebBrowser control instead of the OLE control, the following Knowledge Base article shows how to configure your system so that the Word document is activated in its own window inside Microsoft Word:

162059 Office Documents Open in Internet Explorer

For additional information, click the following article numbers to view the articles in the Microsoft Knowledge Base:

191615 BUG: Menu disabled in application activated using OLE control

243392 Document opened in Internet Explorer appears inaccessible; exception AV may occur


Modification Type:MinorLast Reviewed:7/6/2004
Keywords:kbbug kbContainer kbInplaceAct kbpending kbWebBrowser KB202476