[Gambas-user] Object-Arrays

Ricardo Díaz Martín oceanosoftlapalma at ...626...
Sat Dec 25 17:46:04 CET 2010


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 <dag.jarle.johansen at ...626...>

> 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 on this way.
>
> Private NP as new Image[]
> Private PicNr as integer
>
> in some sub
>
> PicNr=PicNr+1
> NP= New Image[PicNr]
>
> what somehow works. But how do I refer to the new image? For me it would
> have been logical to use NP[PicNr] = New Image(Parent), and refer directly
> with a value of PicNr, but in all samples I have seen it is needed to loop
> through the array to find the item in question.
>
> Do anyone have a working sample for me, using dynamicly built objects?
>
> Thanks for any help,
> regards,
> Dag-Jarle
>
> ------------------------------------------------------------------------------
> Learn how Oracle Real Application Clusters (RAC) One Node allows customers
> to consolidate database storage, standardize their database environment,
> and,
> should the need arise, upgrade to a full multi-node Oracle RAC database
> without downtime or disruption
> http://p.sf.net/sfu/oracle-sfdevnl
> _______________________________________________
> Gambas-user mailing list
> Gambas-user at lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/gambas-user
>



More information about the User mailing list