Re: [Gambas-user] Latest Gambas packages for Ubuntu - Broken?

2008-11-14 Thread MaxVK
Epíleg wrote: > > ...You can build them Yourself. > > http://packages.debian.org/unstable/source/gambas2 > Heh! I didn't actually follow the link because it used the word 'unstable', hence my reply! -- View this message in context: http://www.nabble.com/Latest-Gambas-packages-for-Ubuntu---B

Re: [Gambas-user] Latest Gambas packages for Ubuntu - Broken?

2008-11-14 Thread Epíleg
En/na MaxVK ha escrit: > Thanks Epíleg, but I really don't want the unstable release - I need a rock > solid version. Is there an up to date stable version that I can do the same > thing with? Better still if there is actually a full .deb release? > > Regards > > Max unstable? If I go to http://

Re: [Gambas-user] New Error message with 2.9

2008-11-14 Thread moon_walker
Hi Stefano, thanks, but what means SVN version? :-) thx Attila Stefano Palmeri wrote: > > Il giovedì 13 novembre 2008 21:22:09 moon_walker ha scritto: > > I had the same problem on slackware. Benoit fixed it in svn version. > > Bye, > > Stefano > > --

Re: [Gambas-user] New Error message with 2.9

2008-11-14 Thread Stefano Palmeri
Il giovedì 13 novembre 2008 21:22:09 moon_walker ha scritto: > Hi, > > i just updated my 2.8 to 2.9 successfully on OpenSuSE 11 with packages by > valor's repo. > If i want to create an executable or even edit the project properties i > receive an error message: > > "Unable to create desktop shortc

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" -