Re: [Gambas-user] Object beginer, how to create objects on a form

2011-06-18 Thread Demosthenes Koptsis
yes i found it after all. Thanks! On Sat, 2011-06-18 at 17:14 +0300, Jussi Lahtinen wrote: > Add some size for it, example: > > hTextBox1.Width = 100 > hTextBox1.Height = 100 > > > Jussi > > > > On Sat, Jun 18, 2011 at 17:00, Demosthenes Koptsis > wrote: > > > Hi, > > > > i try to implem

Re: [Gambas-user] Object beginer, how to create objects on a form

2011-06-18 Thread Jussi Lahtinen
Add some size for it, example: hTextBox1.Width = 100 hTextBox1.Height = 100 Jussi On Sat, Jun 18, 2011 at 17:00, Demosthenes Koptsis wrote: > Hi, > > i try to implement some examples about object creation. > i have this example > > - > Public Sub Button1_Click() > > Di

[Gambas-user] Object beginer, how to create objects on a form

2011-06-18 Thread Demosthenes Koptsis
Hi, i try to implement some examples about object creation. i have this example - Public Sub Button1_Click() Dim hTextBox1 As TextBox hTextBox1 = New TextBox(FMain) hTextBox1.Text = "Set hTextBox1" hTextBox1.X = 80 hTextBox1.Y = 120 FMain.Refresh Wait 1 End