In word 2003 (and previous), hiding menus / bars in an OLE Frame with SWT ClientSite is done by means of oleAutomation, and setting the "Visible" property of commandBars to false, like this:

OleClientSite site = new OleClientSite(frame, SWT.NONE, "Word.Document");
OleAutomation oleAutomation = new OleAutomation(site);
int commandBarsDispId = oleAutomation.getIDsOfNames(new String[] { "CommandBars" })[0];
Variant commandBars = oleAutomation.getProperty(commandBarsDispId);
 OleAutomation commandBarsAutomation = commandBars.getAutomation();
// ................
int visibleDispId = commandBarAutomation.getIDsOfNames(new String[] { "Visible" })[0];
commandBarAutomation.setProperty(visibleDispId, new Variant(false));

In word 2007/2010, this does no longer work, since commandBars is replaced by the Ribbon (and quick access toolbar). There must be other methods to handle this.

This article deals with the problem in VBA. How is this done in Java and SWT oleClientSite ??!

link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.