I want to open a new excel sheet and write a cell value B1 as "Apples" using Dxl.
I am stuck at the last step of the problem.
- Open a new excel workbook and get a handle on it. [Works]
- Open a new worksheet and get a handle on it. [Works]
- Add a new worksheet and get a handle on it. [Works]
- Write the cell B1 in the worksheet "Apples". [Does not work]
void oleCheck (string s) {
if (!null s) {
print "An Error occurred: " s
halt;
}
}
OleAutoObj objExcel = oleCreateAutoObject("Excel.Application")
// Make it visible
olePut(objExcel, "Visible", true)
OleAutoArgs args = create();
// get Application.Workbooks
OleAutoObj objWorkbookCollection= null;
oleCheck oleGet ( objExcel, "Workbooks", objWorkbookCollection)
// Add a workbook --> Application.Workbooks.add ()
oleCheck oleMethod(objWorkbookCollection, "Add")
// Get a handle to the newly added workbook --> Application.ActiveWorkbook
OleAutoObj objWorkbook = null
oleCheck oleGet (objExcel, "ActiveWorkbook", objWorkbook)
// Get a handle to the Sheets collection --> ActiveWorkbook.Sheets
OleAutoObj objSheetsCollection = null
oleCheck oleGet (objExcel, "Sheets", objSheetsCollection )
// Add a sheet ... ActiveWorkbook.Sheets.Add
oleCheck oleMethod(objSheetsCollection , "Add")
// Get a handle to the sheet ...
OleAutoObj objSheet = null
oleCheck oleGet (objWorkbook, "ActiveSheet", objSheet)
// Get the Sheets Name
string sSheetName = null;
oleCheck oleGet (objSheet, "name", sSheetName)
OleAutoObj objcell = sheet.get("Apples",1,2) <--- Does not work
print "New Sheet with name " sSheetName " added!"
Here is an excerpt of a library we use to communicate with Excel. You need to use the "A1" notation with OLE. Note that I did not test this with recent versions of Excel or DOORS. Kudos to http://galactic-solutions.com/
Edit: You are right, my bad. I focused more on the way how to get a handle to the cell than to setting the value. I added some functions to set cell values or formulas, either by using the row,col notation or by using the A1 notation. The complete file is available at Galactic Solutions in the Download Section.