Does anybody has an idea how to hide Ribbons (new toolbars at the top)
through OleAutomation. I tried it hard but couldnt achieve. I tried to
at-least show in a full screen but no success
.......
.......
int[] rgdispid = application.getIDsOfNames(new
String[]{"DisplayFullScreen"});
int dispIdMember = rgdispid[0];
Variant[] rgvarg = new Variant[1];
rgvarg[0] = new Variant(true);
boolean isX = application.setProperty(dispIdMember, rgvarg);
.......
.......