Re: [Gambas-user] Gambas 3 Revision 5223 doesn't compile @ Xubuntu 12.04 64bit

2012-10-07 Thread Sebastian Kulesz
On Wed, Oct 3, 2012 at 2:24 PM, Sebastian Kulesz wrote: > On Wed, Oct 3, 2012 at 2:10 PM, Jussi Lahtinen > wrote: >> Compiling the gb.desktop project... >> gb.desktop >> Form1.form:3: error: Unknown identifier: Button >> >> Full log attached. >> >> Jussi >> >> ---

[Gambas-user] Embedded HTTP server (continued)

2012-10-07 Thread Benoît Minisini
Hi, In revision #5226, the embedded HTTP server is now able to serve static files. These static files must be located in a new project directory named ".public" on the disk and "Public" on the IDE project tree. The server first checks if the URL matches a file inside the ".public" directory. I

Re: [Gambas-user] Problem with code made menu event handling

2012-10-07 Thread Willy Raets
On Sun, 2012-10-07 at 10:13 +0200, Fabien Bodard wrote: > >> > > > >> > > Public Sub _MenuEvent_Click() > >> > > > >> > > Dim iX, iLength As Integer > >> > > Dim AddOnToRun As String > >> > > >> > When this is run, hMenuItem will be the last item you added, therefore > >> > no matter how many A

Re: [Gambas-user] Problem with code made menu event handling

2012-10-07 Thread Fabien Bodard
Oups yes ... It's not the good answer Hmenuitem can be only local... In your case it contain the last created menu . Thats why it use the last item properties . In the event use LAST at the place of hMenuitem. and all will go fine. Last represent the last fired menu.. in fact its the class or co

Re: [Gambas-user] Problem with code made menu event handling

2012-10-07 Thread Fabien Bodard
Have you try without the underscore in the event handler name ? Le 7 oct. 2012 09:52, "Tobias Boege" a écrit : > > > With 1 AddOn in the file (lets say AddOnOne) the menu shows AddOnOne > and > > > when clicking runs the application AddOnOne > > > > > > With 2 AddOns in the file (lets say AddOnOn

Re: [Gambas-user] gb.jit ... gb.mime - 2

2012-10-07 Thread Emil Lenngren
What "prefix" did you use for llvm? Please read the README file in the gb.jit directory for how to compile llvm. /Emil 2012/10/1 Pino Zollo > I have installed LLVM 3.1 fron sources but I still get: > > | > || Unable to find file: libLLVM-3.1.so > || gb.jit is disabled > || > > > by the way the

Re: [Gambas-user] Problem with code made menu event handling

2012-10-07 Thread Tobias Boege
> > With 1 AddOn in the file (lets say AddOnOne) the menu shows AddOnOne and > > when clicking runs the application AddOnOne > > > > With 2 AddOns in the file (lets say AddOnOne and AddOnTwo) the menu > > shows AddOnOne and AddOnTwo and When clicking either one of them > > AddOnTwo is ALWAYS run.