[Gambas-user] Issue 261 in gambas: Explicit use of _free() fails

2012-06-26 Thread gambas
Status: New Owner: Labels: Version Type-Bug Priority-Medium OpSys-Any Dist-Any Arch-Any Desktop-Any GUI-Any New issue 261 by adamn...@gmail.com: Explicit use of _free() fails http://code.google.com/p/gambas/issues/detail?id=261 1) Describe the problem. Friday 13th = A No

Re: [Gambas-user] No return value (18)

2012-06-26 Thread Bruce
On Mon, 2012-06-25 at 22:06 +0930, Bruce wrote: Nevertheless, Benoît, when I track it down you'll be the second to know. Got it! Issue 261 Bruce -- Live Security Virtual Conference Exclusive live event will cover all

Re: [Gambas-user] Signal #11 when overriding Variant[] - Bug revived?

2012-06-26 Thread Emil Lenngren
If you use the JIT compiler, you can override native classes with classes written in Gambas, but not override classes written in gambas with a native one. I hope that makes sense.. /Emil 2012/6/24 Benoît Minisini gam...@users.sourceforge.net Le 24/06/2012 20:46, tobi a écrit : Alright,

Re: [Gambas-user] Bug with JIT and external functions

2012-06-26 Thread Jussi Lahtinen
OK, here is more. This is really really weird. I expect message Everything works!, but I get *only* Something broke!!. But if I add 'Return', under Message(Everything works!), or I remove 'Fast' then everything works as expected. See attachment. Gambas 3 rev 4860 @ Xubuntu 12.04 64bit Jussi

Re: [Gambas-user] Bug with JIT and external functions

2012-06-26 Thread Emil Lenngren
I am in Italy now on holiday so I cannot debug the code, but could you please run gbx3 with GB_JIT=info and post the llvm code? /Emil 2012/6/26 Jussi Lahtinen jussi.lahti...@gmail.com OK, here is more. This is really really weird. I expect message Everything works!, but I get *only*

Re: [Gambas-user] Bug with JIT and external functions

2012-06-26 Thread Jussi Lahtinen
.../MagicBug$ GB_JIT=info gbx3 gb.jit: using LLVM 3.2. gb.jit: beginning compiling MainModule.MainModule:

Re: [Gambas-user] Bug with JIT and external functions

2012-06-26 Thread Emil Lenngren
It seems like when LLVM reads boolean pointers, it assumes the seven most significant bits are always 0, which is not the case in Gambas. Does the latest revision work? I have no opportunity to even compile it and see if it works at the moment :) /Emil 2012/6/26 Jussi Lahtinen

[Gambas-user] Question on networking between one Gambas application that acts as both client and server

2012-06-26 Thread Willy Raets
Hi all, I'm thinking about an application (game) that can act as both client and server and thus one persons application can connect over TCP/IP with another persons application. The initiating application will go in some server modus, the other in some client modus. If person on Server side

Re: [Gambas-user] Question on networking between one Gambas application that acts as both client and server

2012-06-26 Thread Randall Morgan
Will this be done in a direct P2P fashion or using a master hub? If you are doing this in a direct peer to peer then your players will need to handle locating their friend's machine on the net perhaps via the IP address and may need to set up their machine at home to allow your chosen protocol be

Re: [Gambas-user] Issue 261 in gambas: Explicit use of _free() fails

2012-06-26 Thread gambas
Updates: Status: Accepted Labels: -Version Version-TRUNK Comment #1 on issue 261 by benoit.m...@gmail.com: Explicit use of _free() fails http://code.google.com/p/gambas/issues/detail?id=261 (No comment was entered for this change.)

Re: [Gambas-user] Issue 261 in gambas: Explicit use of _free() fails

2012-06-26 Thread gambas
Updates: Status: Fixed Comment #2 on issue 261 by benoit.m...@gmail.com: Explicit use of _free() fails http://code.google.com/p/gambas/issues/detail?id=261 Should be fixed in revision #4863. -- Live Security

Re: [Gambas-user] Issue 260 in gambas: News on Gambas home page displays differently based on browser

2012-06-26 Thread gambas
Updates: Status: WontFix Labels: -Version Version-TRUNK Comment #1 on issue 260 by benoit.m...@gmail.com: News on Gambas home page displays differently based on browser http://code.google.com/p/gambas/issues/detail?id=260 There should not be any scrollbars. Firefox is right,

Re: [Gambas-user] Question on networking between one Gambas application that acts as both client and server

2012-06-26 Thread Willy Raets
On di, 2012-06-26 at 17:34 -0700, Randall Morgan wrote: Will this be done in a direct P2P fashion or using a master hub? I was thinking P2P If you are doing this in a direct peer to peer then your players will need to handle locating their friend's machine on the net perhaps via the IP

Re: [Gambas-user] Issue 261 in gambas: Explicit use of _free() fails

2012-06-26 Thread gambas
Comment #3 on issue 261 by adamn...@gmail.com: Explicit use of _free() fails http://code.google.com/p/gambas/issues/detail?id=261 Wonderful! Tested, confirmed and thank you. Bruce -- Live Security Virtual Conference

[Gambas-user] Two small(ish) errors in Format$

2012-06-26 Thread Bruce
a) AM/PM indicator is in the wrong position Print Format(Now(), h:nAM/PM) -- 2:PM18 Print Format(Now(), h:n:sAM/PM) -- 2:18:PM0 b) Currency abbrev ($$) In the help, it says: PRINT Format$(-1972.06, ($$,#.###)) (USD 1,972.06) Note the space after USD. However, when I run it I