Search found 2 matches
- Thu Sep 17, 2020 6:04 am
- Forum: C++ Development
- Topic: wxGrid display large data
- Replies: 6
- Views: 437
Re: wxGrid display large data
Hi, Yes. After some analysis i found that the time is actually spent in reading the huge data but not with respect to the grid display itself. The problem is, we do not have control over the data reading part. I am working with release builds only. Since do reading of data during display of the grid...
- Wed Sep 16, 2020 2:54 pm
- Forum: C++ Development
- Topic: wxGrid display large data
- Replies: 6
- Views: 437
wxGrid display large data
Hi, I use wxwidgets to develop my c++ GUI application. I have to display around 150 rows data in wxGrid. I have derived a class from wxGrid in my application already. The grid has 10 columns. Now during Initialization of grid, i have to read data for all 150 rows, and show it in the grid, this is ta...