Re: [Gambas-user] I can't believe this... I can!

2012-10-10 Thread Jussi Lahtinen
I'm using Gambas 3 rev 5228, but this feature was introduced some time ago... Jussi On Wed, Oct 10, 2012 at 2:28 AM, Caveat wrote: > LOL... you must be using a different Gambas! > > I go to Project, Properties, click on the Options tab and under > Compilation have just > "Module symbols are p

Re: [Gambas-user] I can't believe this... I can!

2012-10-09 Thread RICHARD WALKER
Ah but, mine DOES have unlimited warnings - and I paid... just blood, sweat and tears. Trouble is I am sloppy. And I am overly confident in my ability to code without making a single mistake, despite decades of evidence to the contrary! If you do it my way you never see the warnings - neat trick,

Re: [Gambas-user] I can't believe this... I can!

2012-10-09 Thread Caveat
LOL... you must be using a different Gambas! I go to Project, Properties, click on the Options tab and under Compilation have just "Module symbols are public by default" and "Form controls are public" Not a major issue, but I just wonder if it might have saved Richard some time if he'd seen a w

Re: [Gambas-user] I can't believe this... I can!

2012-10-09 Thread RICHARD WALKER
Thanks guys, it is even more embarrassing because I thought I had checked that when I was re-organising the code. Now that I think about it, it is the only logical explanation. Boy I must have been tired! R -- Don't let s

Re: [Gambas-user] I can't believe this... I can!

2012-10-09 Thread Caveat
I have Console, Breakpoints, and Tasks. No Warnings tab. Gambas 3.2.90, rev 5051 from svn. On 09/10/12 18:51, Jussi Lahtinen wrote: > It is in IDE under code editor where are tabs for console, breakpoints, > warnings and task. In that order. > > Jussi > > > > > On Tue, Oct 9, 2012 at 5:01 PM, Ca

Re: [Gambas-user] I can't believe this... I can!

2012-10-09 Thread Caveat
On 09/10/12 14:21, Fabien Bodard wrote: > Normally you have this information in the compiler warnings Where do you see them? I saw no warning when I compiled the code... -- Don't let slow site performance ruin your busine

Re: [Gambas-user] I can't believe this... I can!

2012-10-09 Thread Fabien Bodard
Normally you have this information in the compiler warnings Le 9 oct. 2012 10:33, "Caveat" a écrit : > You've defined IS_ARRAY_NAME twice! > > Once you have it declared 'at the class level': > > 'Special treatment for array names > Public IS_ARRAY_NAME As Boolean > Public CALL_DEPTH As Integer =

Re: [Gambas-user] I can't believe this... I can!

2012-10-09 Thread Caveat
You've defined IS_ARRAY_NAME twice! Once you have it declared 'at the class level': 'Special treatment for array names Public IS_ARRAY_NAME As Boolean Public CALL_DEPTH As Integer = -1 but you have also defined the variable Is_array_name in your Sub scan_file(): Dim Is_array_name As Boolean =