[Gambas-user] Re ferencing existing multiple controls in loops

2009-03-30 Thread jbskaggs
Okay I have a form with say 50 picturebox controls: How does one check each controls in a loop? So if I wanted to have a big picture box reference each of the previous pictureboxes In GML I could use this: a=PictureBox for i = 0 to 50 step 1 b=ai BigPicturebox.Picture=b.picture wait 2 next i

Re: [Gambas-user] Re ferencing existing multiple controls in loops

2009-03-30 Thread Richard Muir-Gladman
On Mon, 2009-03-30 at 13:55 -0700, jbskaggs wrote: Okay I have a form with say 50 picturebox controls: How does one check each controls in a loop? So if I wanted to have a big picture box reference each of the previous pictureboxes In GML I could use this: a=PictureBox for i = 0