Tagged Questions

15
votes
6answers
44k views

What does the Excel VBA range.Rows property really do?

OK, I am finishing up an add-on project for a legacy Excel-VBA application, and I have once again run up against the conundrum of the mysterious range.Rows(?) and worksheet.Rows properties. Does ...
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 ...
1
vote
1answer
154 views

How to prevent Windows Explorer from reusing the existing Excel instances?

I have a number of different programs where I create Excel instances and control them via OLE automation. In some cases the user can also work with these instances through Excel UI (which may involve ...
1
vote
2answers
556 views

Using Automation to get_Text from Excel. If cell too narrow, get #####. How can I avoid that?

I'm using Automation to get_Text from an Excel worksheet. I do this because I need the formatted value (getting the value of the cell doesn't apply any formatting). If the column the cell is in is ...
0
votes
2answers
249 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 ...
0
votes
0answers
317 views

Export an Excel sheet to PDF using T-SQL to call Worksheet.ExportAsFixedFormat

I've got a SQL server 2008 R2 database that writes data to an Excel 2010 spreadsheet, and runs some calculations. I'd like to then export one of the sheets to PDF. The Transact SQL I'm running looks ...
0
votes
1answer
802 views

Problem with format a single excel column with OLE automation using Delphi

I have piece of code which I use to format a range of cells in Excel. It works fine in Excel 2007 but when the range is only 1 column wide and it is Excel 2003 instead of 2007, I'll get an error ...
0
votes
3answers
3k views

Building MFC Automation example (to access Excel using OLE automation). Can't compile

I'm trying to build the example described at http://support.microsoft.com/kb/178749/EN-US/ in order to build an application that programatically accesses Excel using Automation. I have Visual C++ ...