Reputation: 1
In Eclipse-RCP I open a Microsoft Word document using the following code:
oleClientSite = new OleClientSite(oleFrame, SWT.NONE, "Word.Document", file);
oleClientSite.doVerb(OLE.OLEIVERB_INPLACEACTIVATE);
oleAutomation = new OleAutomation(oleClientSite);
When the document is focused or edited, the menu (defined in Application.e4xmi) disappears (on the top/left) and I do not know why?
If I click on the treeView it appears again.
as suggested, I tried the snippet262 (stand-alone mode) : yes it's work fine for me
I use Eclipse 2023-03 and SWT 3.125.0.v20240227
Upvotes: 0
Views: 33