Re: [Gambas-user] Beginers questions

2008-11-20 Thread Demosthenes Koptsis
For now i write small apps and i will use Werner method. Thanks a lot for your respond! On Sat, Nov 15, 2008 at 10:37 AM, Tomas Eroles i Forner < [EMAIL PROTECTED]> wrote: > Hi all! > > El dv 14 de 11 del 2008 a les 11:40 -0500, en/na Stephen Bungay va > escriure: > > Demosthenes Koptsis wrote

Re: [Gambas-user] Beginers questions

2008-11-15 Thread Tomas Eroles i Forner
Hi all! El dv 14 de 11 del 2008 a les 11:40 -0500, en/na Stephen Bungay va escriure: > Demosthenes Koptsis wrote: > > Hi to all, > > > > i have two simple questions as a beginner, > > > > 1) how to have access to control values from different forms? > > > >Set the controls in all forms to

Re: [Gambas-user] Beginers questions

2008-11-14 Thread Stephen Bungay
Demosthenes Koptsis wrote: > Hi to all, > > i have two simple questions as a beginner, > > 1) how to have access to control values from different forms? > Set the controls in all forms to be public as Werner suggests, or use properties and strictly control what information gets exposed to

Re: [Gambas-user] Beginers questions

2008-11-14 Thread Ron
Werner schreef: > Demosthenes Koptsis wrote: > >> Hi to all, >> >> i have two simple questions as a beginner, >> >> 1) how to have access to control values from different forms? >> >> For example i have 2 forms, Form1 and Form2 >> I want to write something like the next code, in Form2 >> >> ---

Re: [Gambas-user] Beginers questions

2008-11-14 Thread Werner
Demosthenes Koptsis wrote: > Hi to all, > > i have two simple questions as a beginner, > > 1) how to have access to control values from different forms? > > For example i have 2 forms, Form1 and Form2 > I want to write something like the next code, in Form2 > > --- Form1 code

[Gambas-user] Beginers questions

2008-11-14 Thread Demosthenes Koptsis
Hi to all, i have two simple questions as a beginner, 1) how to have access to control values from different forms? For example i have 2 forms, Form1 and Form2 I want to write something like the next code, in Form2 --- Form1 code TextArea1.Text="Hello world" -