The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
2answers
350 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 ...
0
votes
1answer
435 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
118 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 ...
3
votes
1answer
179 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 ...