Re: [Gambas-user] Gambas for Android

2012-04-08 Thread Kevin Fishburne
On 04/09/2012 02:12 AM, John Rose wrote: > Thanks for peoples' replies. It's interesting that the Basic dev apps do > not yet seem to include GUI Designers. IMO they are an essential for any > worthwhile Android RAD. > > My starter posting on this topic was misleading in that it implied that > I wa

[Gambas-user] Gambas for Android

2012-04-08 Thread John Rose
Thanks for peoples' replies. It's interesting that the Basic dev apps do not yet seem to include GUI Designers. IMO they are an essential for any worthwhile Android RAD. My starter posting on this topic was misleading in that it implied that I wanted Gambas to dev apps on Android which would run

Re: [Gambas-user] Gambas for Android

2012-04-08 Thread John Spikowski
On Sun, 2012-04-08 at 22:04 -0400, Rob Kudla wrote: > On 04/08/2012 09:47 PM, John Spikowski wrote: > > The ScriptBasic dev team is packaging the interpreter in a Term.apk file > > to make it installable without all the Android Linux tricks just to run > > it native. Any feedback your willing to pr

Re: [Gambas-user] Gambas for Android

2012-04-08 Thread Rob Kudla
On 04/08/2012 09:47 PM, John Spikowski wrote: > The ScriptBasic dev team is packaging the interpreter in a Term.apk file > to make it installable without all the Android Linux tricks just to run > it native. Any feedback your willing to provide with this early beta As I said, I'm comfortable using

Re: [Gambas-user] Gambas for Android

2012-04-08 Thread John Spikowski
On Sun, 2012-04-08 at 21:24 -0400, Rob Kudla wrote: > On 04/07/2012 01:51 PM, John Spikowski wrote: > > On Sat, 2012-04-07 at 17:10 +0100, John Rose wrote: > >> Has anybody heard any more re porting Gambas to Android? > > The ScriptBasic project recently ported ScriptBasic to Android Linux > > Th

Re: [Gambas-user] Gambas3 & andLinux on WinXP

2012-04-08 Thread Rob Kudla
On 04/08/2012 11:55 AM, Demosthenes Koptsis wrote: > andLinux is a ubuntu 9.04. > i know it is ancient but there is no other way to run native linux apps > in windows. andLinux is based on coLinux, which is still developed today. Besides coLinux itself, there are a number of other projects based

Re: [Gambas-user] Gambas for Android

2012-04-08 Thread Rob Kudla
On 04/07/2012 01:51 PM, John Spikowski wrote: > On Sat, 2012-04-07 at 17:10 +0100, John Rose wrote: >> Has anybody heard any more re porting Gambas to Android? > The ScriptBasic project recently ported ScriptBasic to Android Linux There's also BASIC+SQL, also GPL, installable from the Market.. er

Re: [Gambas-user] Setting at zero more byte in a file by "Byte[]"

2012-04-08 Thread Ru Vuott
Hello Emil, no, it's no good, because I obtain 41 02 04 00 00 00 00 . again. Minisini's solution is that right. --> buff.Write(stream) But thank you. Bye Vuottt -- For Developers, A Lot Can Happen In A Sec

Re: [Gambas-user] Setting at zero more byte in a file by "Byte[]"

2012-04-08 Thread Emil Lenngren
When you write For Each b In buff b = 0 Next you get a copy of each byte in the variable 'b', not a reference. Instead, you can do something like this: For i = 0 To 3 buff[i] = 0 Next /Emil 2012/4/8 Ru Vuott > Hello, > > I'ld like to set at zero more subs

Re: [Gambas-user] Setting at zero more byte in a file by "Byte[]"

2012-04-08 Thread tobi
On Sun, 08 Apr 2012, Ru Vuott wrote: > Hello, > > I'ld like to set at zero more subsequent byte (e.g. the FIRST four) in a > file, using that code: > > *** > Public Sub Button1_Click() > > Dim aFl As File > Dim buff As New Byte[4] > Dim b As Byte > >

[Gambas-user] Setting at zero more byte in a file by "Byte[]"

2012-04-08 Thread Ru Vuott
Hello, I'ld like to set at zero more subsequent byte (e.g. the FIRST four) in a file, using that code: *** Public Sub Button1_Click() Dim aFl As File Dim buff As New Byte[4] Dim b As Byte aFl = Open "/tmp/my_file" For Write For Each

Re: [Gambas-user] Gambas3 & Xming

2012-04-08 Thread Willy Raets
On zo, 2012-04-08 at 22:20 +0300, Demosthenes Koptsis wrote: > here are some screenshots > > http://www.mediafire.com/i/?ehralxdlqxj30ju > > http://www.mediafire.com/i/?r40web2l14o93ny > > http://www.mediafire.com/i/?s9a7bykyrbufwib > > gambas3 on windows 7 via xming. > > Gambas3 is running on

Re: [Gambas-user] Gambas3 & Xming

2012-04-08 Thread Demosthenes Koptsis
here are some screenshots http://www.mediafire.com/i/?ehralxdlqxj30ju http://www.mediafire.com/i/?r40web2l14o93ny http://www.mediafire.com/i/?s9a7bykyrbufwib gambas3 on windows 7 via xming. Gambas3 is running on Linux Mint Debian Edition on server side

[Gambas-user] Form with multiple charts

2012-04-08 Thread M. Cs.
Hi I managed to draw two pie-charts on a form, with two separate DrawingAreas. My problem is that it I can do it only with single instance of DIM mychart AS Chart I can use it for two different drawings on two areas, but when I draw a third one on a third drawing area I cannot change it's type. It

Re: [Gambas-user] Gambas3 & andLinux on WinXP

2012-04-08 Thread Demosthenes Koptsis
ok andLinux is not working for me. But i found something else. i can run Xming to conect to a remote X server and run gui applications. with this way i can have Gambas3 as SaaS. i can have a server with gambas3 and a host there gambas3 appplications. users can run these apps with Xming. --

Re: [Gambas-user] Gambas3 & andLinux on WinXP

2012-04-08 Thread Demosthenes Koptsis
On 04/08/2012 06:49 PM, Benoît Minisini wrote: > Le 08/04/2012 17:15, Demosthenes Koptsis a écrit : >> i make some test with andLinux which is a ubuntu 9.04 installed in >> windows xp. >> >> i try to compile gambas3 to andLinux with purpose to run Gambas3 in >> WindowsXP if i can. >> >> i dont know

Re: [Gambas-user] Release of Gambas 3.1

2012-04-08 Thread Laurent Carlier
> Le 08/04/2012 17:41, Laurent Carlier a écrit : > >> Hi, > >> > >> This new release fixes more than 150 bugs and adds more than 120 new > >> features. > >> > >> All Gambas 3.x versions will be backward-compatible, i.e. a program > >> written in Gambas 3.0 version will be able to run unchanged with

Re: [Gambas-user] Gambas3 & andLinux on WinXP

2012-04-08 Thread Demosthenes Koptsis
Στις 8/4/2012 18:49, ο/η Benoît Minisini έγραψε: > Le 08/04/2012 17:15, Demosthenes Koptsis a écrit : >> i make some test with andLinux which is a ubuntu 9.04 installed in >> windows xp. >> >> i try to compile gambas3 to andLinux with purpose to run Gambas3 in >> WindowsXP if i can. >> >> i dont kn

Re: [Gambas-user] Release of Gambas 3.1

2012-04-08 Thread Benoît Minisini
Le 08/04/2012 17:41, Laurent Carlier a écrit : >> Hi, >> >> This new release fixes more than 150 bugs and adds more than 120 new >> features. >> >> All Gambas 3.x versions will be backward-compatible, i.e. a program >> written in Gambas 3.0 version will be able to run unchanged with any >> Gambas 3

Re: [Gambas-user] Gambas3 & andLinux on WinXP

2012-04-08 Thread Benoît Minisini
Le 08/04/2012 17:15, Demosthenes Koptsis a écrit : > i make some test with andLinux which is a ubuntu 9.04 installed in > windows xp. > > i try to compile gambas3 to andLinux with purpose to run Gambas3 in > WindowsXP if i can. > > i dont know if anyone else tried something similar. > > so... > > i

Re: [Gambas-user] Release of Gambas 3.1

2012-04-08 Thread Laurent Carlier
> Hi, > > This new release fixes more than 150 bugs and adds more than 120 new > features. > > All Gambas 3.x versions will be backward-compatible, i.e. a program > written in Gambas 3.0 version will be able to run unchanged with any > Gambas 3.x version. But the contrary is false: a program w

[Gambas-user] Gambas3 & andLinux on WinXP

2012-04-08 Thread Demosthenes Koptsis
i make some test with andLinux which is a ubuntu 9.04 installed in windows xp. i try to compile gambas3 to andLinux with purpose to run Gambas3 in WindowsXP if i can. i dont know if anyone else tried something similar. so... i get compilation errors as libtool: compile: gcc -DHAVE_CONFIG_H

Re: [Gambas-user] Release of Gambas 3.1

2012-04-08 Thread Sebi
Thanks a lot To be able to provide gambas3 packages on ubuntu you need to talk to a MOTU(masters of the universe) tu submit the packages and find a maintainer. The work is already done, as gambas3 has been already debianized (it has a ppa). If you need any help please ask! -Original

[Gambas-user] Release of Gambas 3.1

2012-04-08 Thread Benoît Minisini
Hi, This new release fixes more than 150 bugs and adds more than 120 new features. All Gambas 3.x versions will be backward-compatible, i.e. a program written in Gambas 3.0 version will be able to run unchanged with any Gambas 3.x version. But the contrary is false: a program written with a s