Re: [Gambas-user] How do I directly access the child controls in a panel container.

2015-01-10 Thread T Lee Davidson
On 01/10/2015 03:33 PM, Tobias Boege wrote: > On Sat, 10 Jan 2015, T Lee Davidson wrote: >>> If Panel1's containing Form is FForm, then you can do >>> >>> FForm.Controls["TextBox1"] >>> [snip] >>> >> >> Thanks for the elucidation, Tobi. But, I must be missing something. >> >> FForm.Controls["Te

Re: [Gambas-user] How do I directly access the child controls in a panel container.

2015-01-10 Thread Tobias Boege
On Sat, 10 Jan 2015, T Lee Davidson wrote: > > If Panel1's containing Form is FForm, then you can do > > > >FForm.Controls["TextBox1"] > > > > to have this access pattern. Since for every non-Form control, there must be > > a Form somewhere up in the parent chain, it is always an option to go u

Re: [Gambas-user] How do I directly access the child controls in a panel container.

2015-01-10 Thread T Lee Davidson
On 01/10/2015 01:37 PM, Tobias Boege wrote: > On Sat, 10 Jan 2015, T Lee Davidson wrote: >> On 01/10/2015 11:08 AM, J?rn Erik M?rne wrote: >>> Hello, One can address a control on another form with fMain.txtHello.Text. This syntax also works for other container objects.

Re: [Gambas-user] How do I directly access the child controls in a panel container.

2015-01-10 Thread Charlie Reinl
Am Samstag, den 10.01.2015, 13:27 -0500 schrieb T Lee Davidson: > On 01/10/2015 11:08 AM, Jørn Erik Mørne wrote: > > > >> Hello, > >> > >> > >> > >> One can address a control on another form with fMain.txtHello.Text. This > >> syntax also works for other container objects. I have a form with a pane

Re: [Gambas-user] How do I directly access the child controls in a panel container.

2015-01-10 Thread Tobias Boege
On Sat, 10 Jan 2015, T Lee Davidson wrote: > On 01/10/2015 11:08 AM, J?rn Erik M?rne wrote: > > > >> Hello, > >> > >> > >> > >> One can address a control on another form with fMain.txtHello.Text. This > >> syntax also works for other container objects. I have a form with a panel > >> control. There

Re: [Gambas-user] How do I directly access the child controls in a panel container.

2015-01-10 Thread T Lee Davidson
On 01/10/2015 11:08 AM, Jørn Erik Mørne wrote: > >> Hello, >> >> >> >> One can address a control on another form with fMain.txtHello.Text. This >> syntax also works for other container objects. I have a form with a panel >> control. There are several controls within the panel. To avoid naming >> co

Re: [Gambas-user] How do I directly access the child controls in a panel container.

2015-01-10 Thread Jørn Erik Mørne
> Hello, > > > > One can address a control on another form with fMain.txtHello.Text. This > syntax also works for other container objects. I have a form with a panel > control. There are several controls within the panel. To avoid naming > conflicts I want to keep the panel controls separate fr

[Gambas-user] How do I directly access the child controls in a panel container.

2015-01-10 Thread Martin McGlensey
Hello, One can address a control on another form with fMain.txtHello.Text. This syntax also works for other container objects. I have a form with a panel control. There are several controls within the panel. To avoid naming conflicts I want to keep the panel controls separate from the parent fo