Re: [Gambas-user] Object-Arrays

2010-12-25 Thread Dag-Jarle Johansen
Thank you, Ricardo, that looks great, the direction I would prefer. Regards, Dag 2010/12/25 Ricardo Díaz Martín > To add new elements to a dynamic array use: > > Dim aux as new Image > > PicNr=PicNr+1 > NP.Add(aux,PicNr) > > Regards, > Ricardo Díaz > > 2010/12/25 Dag-Jarle Johansen > > > Hell

Re: [Gambas-user] Object-Arrays

2010-12-25 Thread Ricardo Díaz Martín
To add new elements to a dynamic array use: Dim aux as new Image PicNr=PicNr+1 NP.Add(aux,PicNr) Regards, Ricardo Díaz 2010/12/25 Dag-Jarle Johansen > Hello, > > first of all Merry Christmas to everyone. > > It has been a pretty long time since I have done something with Gambas, and > now I h

[Gambas-user] Object-Arrays

2010-12-25 Thread Dag-Jarle Johansen
Hello, first of all Merry Christmas to everyone. It has been a pretty long time since I have done something with Gambas, and now I have a problem with the right usage of objects. Aim is to create a Image dynamicly in runtime, each new Image in an array so it will be easy too handle. I started o