[Gambas-user] gb3 on Nintendo Wii

2011-06-18 Thread Kevin Fishburne
Using something like this: http://wiibrew.org/wiki/Wii_Linux does anyone think it would be possible to run gb3 executables if the gb3 runtime was installed? Apparently Wii Linux is Debian-based and runs X. It of course requires a jailbroken Wii, but I'm wondering if there's a way around that b

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] q: about Printer.Resolution

2011-06-18 Thread Benoît Minisini
> Salut, > > what is wrong on my box? > gambas2 : Printer.Resolution = 600 > gambas3 : Printer.Resolution = 1200 > > the printer behind HP OfficeJet 6210 > > Any explication! The Qt4 printing system is more clever. Qt3 printing system always returns 600 DPI. Regards, -- Benoît Minisini ---

[Gambas-user] q: about Printer.Resolution

2011-06-18 Thread Karl Reinl
Salut, what is wrong on my box? gambas2 : Printer.Resolution = 600 gambas3 : Printer.Resolution = 1200 the printer behind HP OfficeJet 6210 Any explication! -- Amicalement Charlie [OperatingSystem] OperatingSystem=Linux KernelRelease=2.6.33.7-server-2mnb DistributionVendor=MandrivaLinux Distri

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

2011-06-18 Thread Demosthenes Koptsis
ok, i found it i had to set Width, Height. Pardon me... -- Regards, Demosthenes Koptsis. --- Begin Message --- Hi, i try to implement some examples about object creation. i have this example - Public Sub Button1_Click() Dim hTextBox1 As TextBox hTextBox1 = New TextB

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