Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
451 views

List<object[]> using more memory than DataTable?

I've always believed that DataTable would consume more memory than a generic List. I am testing loading a DataTable and loading a List from a SQL Server query. In this case, the DataTable is consuming ...
1
vote
0answers
63 views

Excel List-Object VBA Performance Bug?

I have an issue with performance on an excel application which uses List Objects (AKA Excel Tables). I suspect it may be a bug, but despite my Googling I could not find any reference of it. I've ...
1
vote
0answers
429 views

Refresh Excel ListObject from a Commandline appliaction

I'm trying to update the information of a listObject hosted in a Workbook created by an Excel Addin (example Code1) with an commandline application. I've tried creating an instance of Excel and ...
0
votes
1answer
118 views

VSTO Excel: Restore ListObject data source when reopening a file

I am working on an Excel 2010 template project. In my template I have many sheets with static ListObject controls in each of them. To initialize my ListObject, I bind a BindingList<MyCustomType> ...
0
votes
1answer
50 views

Getting a list of string values from this c# function:

I have been trying to get my head around this but it hasn't been working: I've gotten this function from http://fir3pho3nixx.blogspot.com/2011/01/recursion-cross-product-of-multiple.html where it ...
0
votes
0answers
118 views

C# VSTO Excel with ActiveMQ - ListObject shows only 1 row of data

I have set up a client(consumer) messaging system in C# and uses VSTO to write the messages sent to Excel. These are the steps being done so far, 1) Establish connection with broker to consume ...
0
votes
0answers
354 views

.Net C# Microsoft.Office.Interop.Excel ListObject refresh datasource asynchronously

I have a messaging application set up in C# and will add the messages received asynchronously into a list. I am using only the Microsoft.Office.Interop.Excel namespace and not VSTO extensions thus ...
0
votes
1answer
395 views

Excel VBA ListRows.Add Fails

I'm probably missing something simple, but ListRows.Add is giving me grief. Here's the function: Sub addEmployee(employeeName As String, tableToAddTo As ListObject) Dim newRow As ListRow Set ...