Re: [Gambas-user] gb3: Call trace in debug

2009-12-13 Thread Fabien Bodard
Ok i've found the problem, so ... i've corrected it in the last svn commit but for you just do that : open the file at : ~/.config/gambas3/gambas3.conf find the line : [FDebugInfo] replace the value by : splDebug=[502,122] then save the file open IDE and try to do a step by step debug ...

Re: [Gambas-user] gb3: Call trace in debug

2009-12-13 Thread Fabien Bodard
2009/12/13 Fabien Bodard gambas...@gmail.com: Ok i've found the problem, so ... i've corrected it in the last svn commit but for you just do that : open the file at : ~/.config/gambas3/gambas3.conf find the line : [FDebugInfo] replace the value by : splDebug=[502,122] then save the

Re: [Gambas-user] gb3: Call trace in debug

2009-12-13 Thread Kadaitcha Man
2009/12/13 Fabien Bodard gambas...@gmail.com: Ok i've found the problem :) but for you :) open the file at : ~/.config/gambas3/gambas3.conf find the line : [FDebugInfo] replace the value by : splDebug=[502,122] then save the file open IDE and try to do a step by step debug ...

Re: [Gambas-user] gb3: Call trace in debug

2009-12-13 Thread Kadaitcha Man
2009/12/13 Fabien Bodard gambas...@gmail.com: open IDE and try to do a step by step debug ... you will see the stack (F8) Nope. I'll pull the latest svn and recompile. -- Return on Information: Google Enterprise

Re: [Gambas-user] gb3: Call trace in debug

2009-12-13 Thread Fabien Bodard
but it will be not sufficient you need to reduce now the stack that take all the slide... there is a setting bug with the splitter controle... i need to investigate more... The good news is when you have corrected the size, it is well saved in the conf file. 2009/12/13 Fabien Bodard

Re: [Gambas-user] gb3: Call trace in debug

2009-12-13 Thread Kadaitcha Man
2009/12/13 Fabien Bodard gambas...@gmail.com: The good news is The good news is it worked, and I didn't bother deleting the config :) Thank you, your help really is very much appreciated. -- Return on Information:

Re: [Gambas-user] gb3: Call trace in debug

2009-12-13 Thread Fabien Bodard
2009/12/13 Kadaitcha Man nospam.nospam.nos...@gmail.com: 2009/12/13 Fabien Bodard gambas...@gmail.com: The good news is The good news is it worked, and I didn't bother deleting the config :) no so good if you close the ide ... you have to resize a new time ... arf Thank you, your help

Re: [Gambas-user] gb3: Call trace in debug

2009-12-13 Thread Fabien Bodard
2009/12/13 Kadaitcha Man nospam.nospam.nos...@gmail.com: 2009/12/13 Kadaitcha Man nospam.nospam.nos...@gmail.com: 2009/12/13 Fabien Bodard gambas...@gmail.com: open IDE and try to do a step by step debug ... you will see the stack (F8) Nope. I'll pull the latest svn and recompile. Ok,

Re: [Gambas-user] Timer

2009-12-13 Thread Laurent Alebarde
Have a look here, it may helps you : http://forums.genthttp://forums.gentoo.org/viewtopic-t-790101-highlight-xenomai.html Benoît Minisini a écrit : Hi, I've an application that has a timer that should get fired every 1 second. Sometimes when the application is running and my desktop is under

Re: [Gambas-user] Button not working

2009-12-13 Thread Matti
Last week, someone posted about a new form and a button butty not working (don't have the mail here anymore). This reminded me of a similar problem I once had. Could it be that the problem was not with the code, but with another process running at the same time? Attached, you find a tiny example

Re: [Gambas-user] Button not working

2009-12-13 Thread Fabien Bodard
with a timer ... it's less expansive in ressources 2009/12/13 Matti math.e...@t-online.de: Last week, someone posted about a new form and a button butty not working (don't have the mail here anymore). This reminded me of a similar problem I once had. Could it be that the problem was not

Re: [Gambas-user] Button not working

2009-12-13 Thread Matti
??? Fabien, that wasn't my question. Run the example, and you'll know what I mean. Fabien Bodard schrieb: with a timer ... it's less expansive in ressources 2009/12/13 Matti math.e...@t-online.de: Last week, someone posted about a new form and a button butty not working (don't have the

[Gambas-user] Webview plugins

2009-12-13 Thread richard terry
Does anyone know how to get a flash/mplayer plugin working with webview? Regards Richard -- Return on Information: Google Enterprise Search pays you back Get the facts. http://p.sf.net/sfu/google-dev2dev

[Gambas-user] Editor Control

2009-12-13 Thread John
I have a problem with the editor control, I set it to have a grey background, but if I load a file it becomes white. Is there a way that I can change the background color of modified lines? If not how can I turn off ShowModifiedLines and ShowCurrentLine? Thanks, John

Re: [Gambas-user] Timer

2009-12-13 Thread nando
From using it and from Benoits previous help, My understanding of Timer is as follows: When the Timer is supposed to fire, it will if the Interpreter is available to invoke the SUB with the Timer code. If some other SUB is busy or if CPU loaded, it is not noticed..and forgotten. What two things