Re: [Gambas-user] basics of dynamic arrays of structures

2013-12-29 Thread Tobias Boege
On Mon, 23 Dec 2013, Kevin Fishburne wrote: > On 12/21/2013 04:57 AM, Tobias Boege wrote: > >On Sat, 21 Dec 2013, Kevin Fishburne wrote: > >>On 12/21/2013 12:36 AM, Kevin Fishburne wrote: > >>>I've gotten some flak about how I declare arrays and want to change my > >>>ways. Previously I would do so

Re: [Gambas-user] basics of dynamic arrays of structures

2013-12-22 Thread Kevin Fishburne
On 12/21/2013 04:57 AM, Tobias Boege wrote: On Sat, 21 Dec 2013, Kevin Fishburne wrote: On 12/21/2013 12:36 AM, Kevin Fishburne wrote: I've gotten some flak about how I declare arrays and want to change my ways. Previously I would do something like: Public SomeArray[300,300] as Integer I have

Re: [Gambas-user] basics of dynamic arrays of structures

2013-12-21 Thread Tobias Boege
On Sat, 21 Dec 2013, Kevin Fishburne wrote: > On 12/21/2013 12:36 AM, Kevin Fishburne wrote: > > I've gotten some flak about how I declare arrays and want to change my > > ways. Previously I would do something like: > > > > Public SomeArray[300,300] as Integer > > > > I have a case now where I need

Re: [Gambas-user] basics of dynamic arrays of structures

2013-12-20 Thread Kevin Fishburne
On 12/21/2013 12:36 AM, Kevin Fishburne wrote: > I've gotten some flak about how I declare arrays and want to change my > ways. Previously I would do something like: > > Public SomeArray[300,300] as Integer > > I have a case now where I need an array whose number of elements will be > incremented a

[Gambas-user] basics of dynamic arrays of structures

2013-12-20 Thread Kevin Fishburne
I've gotten some flak about how I declare arrays and want to change my ways. Previously I would do something like: Public SomeArray[300,300] as Integer I have a case now where I need an array whose number of elements will be incremented and that will be cleared occasionally. Of course I can't