I am converting an VSTO app to one that is compatible with ExcelDNA. Howeve r the main problem is that ExcelDNA does not have the controls object as compared to VSTO.
In VSTO: Microsoft.Office.Tools.Excel: you can add a listObject
Worksheet worksheet = Globals.Factory.GetVstoObject(
Globals.ThisAddIn.Application.ActiveWorkbook.Worksheets[1]);
listObj = worksheet.Controls.AddListObject(cell, "list1");
Subsequently, you can set the datasource
listObj.DataSource=list;
However, when I tried to do it in ExcelDNA using Micosoft.Office.Interop.Excel using the listObject. I cannot get the desired result, the listObject returned blank data.
ws=excelApp.ActiveWorkBook.ActiveSheet;
Excel.Range rng=ws.cells[1,1];
//set the datasource
rng.Value2=list;
listObj=this.ListObjects.Add(
Excel.XlListObjectSourceType.xlSrcRange, rng,Missing.Value,
Microsoft.Office.Interop.Excel.XlYesNoGuess.xlNo, Missing.Value);
I can't use the Globals.Factory... as this is not a VSTO program. Thus, I came up with the following workaround. Is there anything I am doing wrongly? I suspect it's the datasource that is giving the problem in ExcelDNA.
What can I do to solve that? How am I suppose to convert the VSTO program to the equivalent in ExcelDNA?