[Gambas-user] Small suggestion re Help Browser "same URL" click

2011-09-13 Thread Adam Ant
Benoit, This mod needs confirmation as I am unsure as to why the original line was commented out. It just doesn't update hWebView.Url if the calculated target Url is the same as what's already being displayed. I have had it running here for ~10 days or so and have not seen any side effect. regar

[Gambas-user] Small suggestion re help browser

2011-09-13 Thread Adam Ant
This mod has two effects: 1) prevents the inadvertent transition of the help page when the user clicks somewhere in the help tree *other than on a specific item*. 2) if the click is on recognizable row in the treeview, it is acted on (this saves the frustration when the cursor is only a few pixels

[Gambas-user] LXDE (again) sugggestion

2011-09-13 Thread Adam Ant
Adds the lxde terminal to the choices in the IDE Options. (very low priority) Bruce Index: FOption.class === --- FOption.class(revision 4126) +++ FOption.class(working copy) @@ -59,7 +59,7 @@ cmbTheme.Add(("Select a them

[Gambas-user] Open IDE not maximized

2011-09-13 Thread Adam Ant
I am sure there was a way to make the IDE not open maximized. I have searched the mail archives and found nothing. Is it possible? Bruce -- BlackBerry® DevCon Americas, Oct. 18-20, San Francisco, CA Learn about the latest

Re: [Gambas-user] Issue 105 in gambas: Folding a block of code crashes (was: Migration crash)

2011-09-13 Thread gambas
Updates: Labels: -Type-Bug Type-Crash Comment #3 on issue 105 by benoit.m...@gmail.com: Folding a block of code crashes (was: Migration crash) http://code.google.com/p/gambas/issues/detail?id=105 (No comment was entered for this change.) ---

Re: [Gambas-user] Issue 60 in gambas: combobox shows blank lines before first item (GTK+)

2011-09-13 Thread gambas
Updates: Labels: -Priority-Medium Priority-Low Comment #2 on issue 60 by benoit.m...@gmail.com: combobox shows blank lines before first item (GTK+) http://code.google.com/p/gambas/issues/detail?id=60 (No comment was entered for this change.) ---

Re: [Gambas-user] Issue 101 in gambas: Add support for adding extra files in the "AutoTools" packager

2011-09-13 Thread gambas
Updates: Labels: -Priority-Medium Priority-Low Comment #3 on issue 101 by benoit.m...@gmail.com: Add support for adding extra files in the "AutoTools" packager http://code.google.com/p/gambas/issues/detail?id=101 (No comment was entered for this change.) --

Re: [Gambas-user] Issue 103 in gambas: Treeview KeyRelease behaves differently with gtk and qt4

2011-09-13 Thread gambas
Updates: Labels: -Priority-Medium Priority-Low Comment #2 on issue 103 by benoit.m...@gmail.com: Treeview KeyRelease behaves differently with gtk and qt4 http://code.google.com/p/gambas/issues/detail?id=103 (No comment was entered for this change.)

Re: [Gambas-user] Issue 105 in gambas: Folding a block of code crashes (was: Migration crash)

2011-09-13 Thread gambas
Updates: Status: Fixed Comment #2 on issue 105 by benoit.m...@gmail.com: Folding a block of code crashes (was: Migration crash) http://code.google.com/p/gambas/issues/detail?id=105 Fixed in revision #4125. --

Re: [Gambas-user] How to compress witg GB3?

2011-09-13 Thread Benoît Minisini
> How to compress a directory/subdirectory inside GB3 with component > gbcompress? > > thx > > andy > Why don't you just run "tar" or "zip" with EXEC or SHELL? -- Benoît Minisini -- BlackBerry® DevCon Americas, Oct.

Re: [Gambas-user] Issue 105 in gambas: Folding a block of code crashes (was: Migration crash)

2011-09-13 Thread gambas
Updates: Summary: Folding a block of code crashes (was: Migration crash) Status: Accepted Labels: -Version Version-TRUNK Comment #1 on issue 105 by benoit.m...@gmail.com: Folding a block of code crashes (was: Migration crash) http://code.google.com/p/gambas/issues/detail?

Re: [Gambas-user] gb3: writing variables to a string using a memory stream and pointer

2011-09-13 Thread Kevin Fishburne
On 09/13/2011 04:59 AM, Benoît Minisini wrote: >> On 09/12/2011 10:24 PM, Benoît Minisini wrote: > ' Create data string. > DataPointer = Alloc(8) > Mem = Memory DataPointer For Read Write > Write #Mem, (Server.DateCurrent + Server.DateUTC) As Float > Data = Read #Mem As Float >>

Re: [Gambas-user] Error after error

2011-09-13 Thread Dag-Jarle Johansen
Hi, that is in fact what happened -my fault off course, but I got confused at that point, because I wanted to use the object much later in a procedure. regards, Dag-Jarle 2011/9/13 Caveat > Benoit, > > Try this: > > Dim myObject As Clipboard > myObject.Clear > > The program will stop at th

Re: [Gambas-user] Unexpected INPUT in form definition

2011-09-13 Thread Benoît Minisini
> I'm creating a menu in the menu editor: > > File > Exit > Input > Modify > > And I'm getting this error wher try to run it:"Unexpected INPUT in form > definition" > > This is the conten of the .form file > > # Gambas Form File 2.0 >

[Gambas-user] Unexpected INPUT in form definition

2011-09-13 Thread fvegaf
I'm creating a menu in the menu editor: File Exit Input Modify And I'm getting this error wher try to run it:"Unexpected INPUT in form definition" This is the conten of the .form file # Gambas Form File 2.0 { Form Form MoveScaled(0

Re: [Gambas-user] Release of Gambas 3 RC3. But I have a dream....

2011-09-13 Thread Benoît Minisini
> Hello Benoît, > > I tried your suggestion (see below), by using a external midi-keyboard, > connected to PC, I tried about 50 (from num. 0) of fd and more, but it > seems it doesn't work. :-( > > Thanks > Bye > Paolo > 1) You just have to test the fd you get from alsa. 2) You don't give much

Re: [Gambas-user] Release of Gambas 3 RC3. But I have a dream....

2011-09-13 Thread Ru Vuott
Hello Benoît, I tried your suggestion (see below), by using a external midi-keyboard, connected to PC, I tried about 50 (from num. 0) of fd and more, but it seems it doesn't work. :-( Thanks Bye Paolo > > Did you try to use "OPEN ... FOR READ / WRITE" on > "/proc/self/fd/xxx" where > xxx is

Re: [Gambas-user] gb3: writing variables to a string using a memory stream and pointer

2011-09-13 Thread Benoît Minisini
> On 09/12/2011 10:24 PM, Benoît Minisini wrote: > >>> ' Create data string. > >>> DataPointer = Alloc(8) > >>> Mem = Memory DataPointer For Read Write > >>> Write #Mem, (Server.DateCurrent + Server.DateUTC) As Float > >>> Data = Read #Mem As Float > >>> Print "Original: "& (Server.DateCurrent + S

Re: [Gambas-user] Error after error

2011-09-13 Thread Caveat
Benoit, Try this: Dim myObject As Clipboard myObject.Clear The program will stop at the myObject.Clear line with a little 'hover message': "NULL Object in FMain:14" (for example). I think that's the message Dag-Jarle is talking about. In my opinion this points to some kind of application/l