Re: [Gambas-user] Interpreter's treatment of classes

2014-04-11 Thread Bruno Félix Rezende Ribeiro
Em Fri, 11 Apr 2014 20:21:38 +0200 Tobias Boege escreveu: > On Fri, 11 Apr 2014, Bruno F??lix Rezende Ribeiro wrote: > > [...] > > That's expected as we may presume OBJECT-CLASS evaluates to an > > object, of the class 'Class', which describes the class 'MMain', > > which in its turn is the resu

Re: [Gambas-user] Interpreter's treatment of classes

2014-04-11 Thread Tobias Boege
On Fri, 11 Apr 2014, Bruno F??lix Rezende Ribeiro wrote: > Hello Gambas users and developers! > > I've been studying Gambas for almost a week and a half and I'm very > impressed with the simplicity and elegance of Gambas' object oriented > Basic language implementation. Congratulations to all dev

Re: [Gambas-user] Interpreter's treatment of classes

2014-04-11 Thread Bruno Félix Rezende Ribeiro
Em Fri, 11 Apr 2014 16:00:23 +0300 Jussi Lahtinen escreveu: > > However, it doesn't behave as an usual instance of > > the class 'Class'. For instance, it is impossible to access the > > public methods and properties defined within the class 'Class' > > using some expression like 'CLASS-CLASS.SY

Re: [Gambas-user] How to set name of control

2014-04-11 Thread abbat81
Thank you, finelly I got it. -- View this message in context: http://gambas.8142.n7.nabble.com/How-to-set-name-of-control-tp46134p46152.html Sent from the gambas-user mailing list archive at Nabble.com. -- Put Bad Deve

Re: [Gambas-user] How to set name of control

2014-04-11 Thread Charlie Reinl
On Fri, 11 Apr 2014 09:23:22 -0700 (PDT), abbat81 wrote: > The Textbox2 exist allready ((( Dim Mycol As Collection Mycol["2"] = TextBox2 Null Object comes from Mycol try Dim Mycol As New Collection Mycol["2"] = TextBox2 Amicalement Charlie --

Re: [Gambas-user] How to set name of control

2014-04-11 Thread Daniel Quintero
TextBox1, TextBox2 and TextBox1 already exist in my form FMain (Obviously, Button1 too): Public Sub Button1_Click() Dim col As New Collection Dim i As Integer col["1"] = TextBox1 col["2"] = TextBox2 col["3"] = TextBox3 For i = 1 To 3 col[CStr(i)].Text = "TextBox: " & CStr(i) Next

Re: [Gambas-user] How to set name of control

2014-04-11 Thread abbat81
The Textbox2 exist allready ((( -- View this message in context: http://gambas.8142.n7.nabble.com/How-to-set-name-of-control-tp46134p46149.html Sent from the gambas-user mailing list archive at Nabble.com. -- Put Bad D

Re: [Gambas-user] How to set name of control

2014-04-11 Thread Daniel Quintero
The object TextBox2 must already exist Regards *_* *Lic. Daniel Quintero Rojas* *¡Saludos desde México!* On Fri, Apr 11, 2014 at 10:22 AM, abbat81 wrote: > Please, help to understand it. > > Dim Mycol As Collection > Mycol["2"] = TextBox2 > ="Null Object" > >

Re: [Gambas-user] How to set name of control

2014-04-11 Thread abbat81
Please, help to understand it. Dim Mycol As Collection Mycol["2"] = TextBox2 ="Null Object" How to use it? I realy cant find any example of using a controls by names. Thanks -- View this message in context: http://gambas.8142.n7.nabble.com/How-to-set-name-of-control-tp46134p46147.html Sent f

Re: [Gambas-user] Interpreter's treatment of classes

2014-04-11 Thread Jussi Lahtinen
> However, it doesn't behave as an usual instance of > the class 'Class'. For instance, it is impossible to access the public > methods and properties defined within the class 'Class' using some > expression like 'CLASS-CLASS.SYMBOL' where the meta-syntactic variable > 'SYMBOL' is a public symbol

Re: [Gambas-user] How to set name of control

2014-04-11 Thread Fabien Bodard
Use a collection Assign existing textboxes like that: Mycol["2"]=textbox2 Then call the textbox like : Mycol[myindex].text="Toto" Le 11 avr. 2014 11:23, "abbat81" a écrit : > I need not each of control but I need to set text to some of each controls, > for example Textbox2.text. > > So, I have

Re: [Gambas-user] How to set name of control

2014-04-11 Thread abbat81
I need not each of control but I need to set text to some of each controls, for example Textbox2.text. So, I have a digit from property of other control "2" How can I set a etxt to Textbox2.Text? -- View this message in context: http://gambas.8142.n7.nabble.com/How-to-set-name-of-control-tp

Re: [Gambas-user] How editing more than 1024 bytes in a field of the DataBrowser

2014-04-11 Thread Ru Vuott
Ok. Ven 11/4/14, Benoît Minisini ha scritto: Oggetto: Re: [Gambas-user] How editing more than 1024 bytes in a field of the DataBrowser A: "mailing list for gambas users" Data: Venerdì 11 Aprile 2014, 02:58 Le 11/04/2014 01:20, Ru Vuott a éc