The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
11 views

Adding blank rows for every skipped value in a DataTable

So I have a DataTable that returns results within a month to month range when available. However, when I format the return, I need to still show skipped months as blanks. I have a working solution, ...
0
votes
2answers
71 views

Remove matched Rows from two Datatable (performance optimization)

Here I have two DataTables: dtTotalDateRangeExcludeSundays dtAbsentsLeavesHolidaysWorks Each having 10k+ values. I need to delete matched rows. Below code works fine foreach (DataRow rw in ...
0
votes
1answer
689 views

Performance of WPF datagrid when using DataGridTemplateColumn

I am using DataGrid to show storagehouse occupancy (Occupied-Show Image With a box, Not Occupied-Show Empty Image). In DataGrid I am using DataGridTemplateColumn to override the Images. My Main Form ...
1
vote
1answer
147 views

A faster implementation of AcceptChanges?

So I started wondering why it takes 3.5 seconds to AcceptChanges for one changed record in a large DataTable. I wrote another implementation of AcceptChanges (VB.NET) - Me is a DataTable here: Public ...
2
votes
2answers
409 views

Search datatable faster

I would want to make the search faster as it takes a long time to retentive the data that i require.. is the a faster method to so this..I have written the code below to to allow me to search through ...
3
votes
1answer
185 views

Is my base class constructed correctly?

I have tables that use BulkManager to save data to database. I moved common functionality to BulkTableBase. Because creation of BulkManager depends on params of each Table I create the BulkManager in ...