Re: [Gambas-user] Array data to Gridview?

2017-02-06 Thread Rolf-Werner Eilert
Hi Riccardo, just use the DATA event for the Gridview. In short: You just define the number of Columns and Rows for the Gridview. As soon as you define the Rows, the Gridview will begin to load the contents for the cells by jumping into the Data event over and over again. You only have to

Re: [Gambas-user] Array data to Gridview?

2017-02-06 Thread Tobias Boege
On Mon, 06 Feb 2017, Riccardo wrote: > Hi, > > > > > > > > I have a multidimensional array with 32,000 records. It takes quite a while > > to load this into a Gridview, and even longer if I provide the user with > > some feedback during the process (an updating label, a progress bar and so

[Gambas-user] Array data to Gridview?

2017-02-06 Thread Riccardo
Hi, > I have a multidimensional array with 32,000 records. It takes quite a while > to load this into a Gridview, and even longer if I provide the user with some > feedback during the process (an updating label, a progress bar and so on...).   > Is there a faster way to load the array