Re: [Gambas-user] Possible suggestion/question

2012-03-01 Thread John Spikowski
On Fri, 2012-03-02 at 03:31 +0100, Benoît Minisini wrote: > Anyway, there is a syntax problem. In Basic, GOSUB is ended by a RETURN > instruction, but RETURN is already used to exit the all function. Or > maybe RETURN will return from the function only if there is no pending > GOSUB. > Most Bas

Re: [Gambas-user] Possible suggestion/question

2012-03-01 Thread Benoît Minisini
Le 25/02/2012 19:18, nando a écrit : > Benoit, > > I came across the need to call many different common small pieces of code > multiple times. > Naturally, we tend to make a SUB just for all of them. > > I wondered if you'd consider resurrecting GOSUB {label} > which is in the same sub. > > It wou

Re: [Gambas-user] Issue 217 in gambas: Reducing the number of panels in a toolpanel crashes the IDE

2012-03-01 Thread gambas
Updates: Status: Fixed Comment #2 on issue 217 by benoit.m...@gmail.com: Reducing the number of panels in a toolpanel crashes the IDE http://code.google.com/p/gambas/issues/detail?id=217 Fixed in revision #4521. -

Re: [Gambas-user] Issue 217 in gambas: Reducing the number of panels in a toolpanel crashes the IDE

2012-03-01 Thread gambas
Updates: Status: Accepted Labels: -Version Version-TRUNK Comment #1 on issue 217 by benoit.m...@gmail.com: Reducing the number of panels in a toolpanel crashes the IDE http://code.google.com/p/gambas/issues/detail?id=217 (No comment was entered for this change.) --

Re: [Gambas-user] Issue 211 in gambas: Gridview multiselect

2012-03-01 Thread gambas
Updates: Status: NeedsInfo Labels: -Version Version-TRUNK Comment #1 on issue 211 by benoit.m...@gmail.com: Gridview multiselect http://code.google.com/p/gambas/issues/detail?id=211 Is it fixed in revision #4520 or later? -

Re: [Gambas-user] Issue 208 in gambas: DataBrowser not have property "Grid" in property panel IDE.

2012-03-01 Thread gambas
Updates: Status: Fixed Labels: -Version Version-TRUNK Comment #1 on issue 208 by benoit.m...@gmail.com: DataBrowser not have property "Grid" in property panel IDE. http://code.google.com/p/gambas/issues/detail?id=208 Fixed in revision #4503. ---

Re: [Gambas-user] Issue 207 in gambas: Event Save get error at DataBrowser

2012-03-01 Thread gambas
Updates: Status: NeedsInfo Labels: -Version Version-TRUNK Comment #2 on issue 207 by benoit.m...@gmail.com: Event Save get error at DataBrowser http://code.google.com/p/gambas/issues/detail?id=207 Is it fixed in revision #4520 or later?

[Gambas-user] Fwd: Re: New GridView... another problem (?)

2012-03-01 Thread Benoît Minisini
Message original Sujet: Re: New GridView... another problem (?) Date : Fri, 02 Mar 2012 00:51:02 +0100 De : Benoît Minisini Pour : Ru Vuott Le 02/03/2012 00:16, Ru Vuott a écrit : > Hello, > > I come back to new GridView object. > I noticed that, when I run a program containi

[Gambas-user] New GridView... another problem (?) - BIS

2012-03-01 Thread Ru Vuott
I measured that white area on the screen by using a square: it's height about cm 2,2 ! --- Ven 2/3/12, Ru Vuott ha scritto: > Da: Ru Vuott > Oggetto: [Gambas-user] New GridView... another problem (?) > A: gam...@users.sourceforge.net > Cc: gambas-user@lists.sourceforge.net > Data: Venerdì 2

[Gambas-user] New GridView... another problem (?)

2012-03-01 Thread Ru Vuott
Hello, I come back to new GridView object. I noticed that, when I run a program containing a GridView, inside the gridview - in bottom - there's a white and empty area ! Even though I change gridview height, this strange white area persists. Is it normal ??? Regards Paolo -

Re: [Gambas-user] DataSource & DataBrowser problem

2012-03-01 Thread Benoît Minisini
Le 01/03/2012 08:49, John Rose a écrit : > Re question on whether I use gb.gtk or gb.qt4: I specified gb.gui only > i.e. neither gb.gtk nor gb.qt4. Since I'm using Ubuntu, I understand > that this results in gb.gtk being used. > I cannot reproduce with gb.gtk what you are talking about. It behaves

Re: [Gambas-user] Import code to EXEC from file

2012-03-01 Thread Emil Lenngren
For reading from a file: http://gambasdoc.org/help/lang/lineinput?v3 Then for each line, execute the command you want (i.e. the string in the file). /Emil 2012/3/1 abbat > > I have now on Button1 next: > > Public Sub button1_Click() > > Exec ["kil

[Gambas-user] Import code to EXEC from file

2012-03-01 Thread abbat
I have now on Button1 next: Public Sub button1_Click() Exec ["killall", "tvtime"] Exec ["killall", "leafpad"] Exec ["killall", "abiword"] End Help me please do that if I have in file ~/prkill next: Exec ["killall", "tvtime"] Exec ["killall", "leafpad"] Exec ["killall", "abiwor

[Gambas-user] gridview vertical header again

2012-03-01 Thread richard terry
Benoit, Thanks for fixing the side vertical header when used on left to fit the text. Question/request. I notice there is essenially a full character width on either side of the text - wastes quite a bit of screen real estate. Any changfe of making it a tighter fit - then if anyone really wante

Re: [Gambas-user] Why not .Columns.WIDTH = nn in new Gridview ?

2012-03-01 Thread Rolf-Werner Eilert
And once again, Benoit was faster than we all :-) Regards Rolf Am 01.03.2012 14:30, schrieb Ru Vuott: > Uhmmm... thanks, but before (and now reinstated by Benoit) it was shortest > way then For etc etc !!! > > > > > --- Gio 1/3/12, Rolf-Werner Eilert ha scritto: > >> Da: Rolf-Werner Eilert >>

Re: [Gambas-user] Gambas runtime

2012-03-01 Thread tobi
hi, On Thu, 01 Mar 2012, Willy Raets wrote: > Hi, > > I'm trying to figure out if it is possible to detect the gambas runtime > version in a command line manner, to be used in EXEC? > > Any ideas? > > Willy > > > --

Re: [Gambas-user] R: Process in TableVew and to Kill a Process - RECTIUS

2012-03-01 Thread Ru Vuott
Hello, yes, my friend, so it works ! Exec ["killall", "prgname"] Very good ! bye Paolo > > if i remember correctly EXEC is an interface to the exec > family of syscalls. so writing EXEC > ["killall prgname"] will result in the program "killall > prgname" to be executed. i suggest that none >

Re: [Gambas-user] Why not .Columns.WIDTH = nn in new Gridview ?

2012-03-01 Thread Ru Vuott
Uhmmm... thanks, but before (and now reinstated by Benoit) it was shortest way then For etc etc !!! --- Gio 1/3/12, Rolf-Werner Eilert ha scritto: > Da: Rolf-Werner Eilert > Oggetto: Re: [Gambas-user] Why not .Columns.WIDTH = nn in new Gridview ? > A: gambas-user@lists.sourceforge.net > D

Re: [Gambas-user] Why not .Columns.WIDTH = nn in new Gridview ?

2012-03-01 Thread Ru Vuott
Yes, Benoit ! Now it's all OK !!! Thanks ! Paolo --- Gio 1/3/12, Benoît Minisini ha scritto: > Da: Benoît Minisini > Oggetto: Re: [Gambas-user] Why not .Columns.WIDTH = nn in new Gridview ? > A: "mailing list for gambas users" > Data: Giovedì 1 marzo 2012, 12:42 > Le 01/03/2012 01:46, R

Re: [Gambas-user] R: Process in TableVew and to Kill a Process - RECTIUS

2012-03-01 Thread tobi
hi, On Thu, 01 Mar 2012, Ru Vuott wrote: > By trying: > > Exec ["killall program_name"] > > it gives me an error: > "Cannot run child process: cannot exec program: resource temporarily > unavailable" > > > But by using: > > SHELL "killall program_name" > > it's OK > . > > > --- Gio 1/

Re: [Gambas-user] Why not .Columns.WIDTH = nn in new Gridview ?

2012-03-01 Thread Benoît Minisini
Le 01/03/2012 01:46, Ru Vuott a écrit : > Yes, Benoit, before it was possible. > > An little exemple (before): > > With GridView1 > .columns.Count = 34 > .Rows.Count = 12 > .Columns.Width = 12 '<- > .Rows.Height = 16 > .Font.Size = 9 > .Font.Bold