Tagged Questions

4
votes
4answers
581 views

From C#, open an arbitrary application

Related question [stackoverflow] here. I'm trying to do the above, but I want to take the process one step further. I want to open an arbitrary file using the default editor for the file type. From ...
2
votes
1answer
127 views

How to add a button to Excel with OLE

I use OLE method like this: var xlApp, xlWorkBook, xlWorkSheet, arr: Variant; begin xlApp := CreateOLEObject('Excel.Application'); xlApp.Visible := True; end; How to add a ...
0
votes
0answers
144 views

How to hide Ribbon (menu / commandBars) of Word 2007/2010 with Java SWT oleClientSite

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: ...
0
votes
2answers
251 views

Is there OLE Automation in Java?

Is it possible to use OLE Automation in Java? If not, why is it not possible in Java? I'm looking to automate the exporting of excel spreadsheets in different format (ie, .csv etc...) Thanks for the ...