Le 10/01/2013 12:02, laurent bernabe a écrit :
> Hello,
>
> Could someone help me for resolving a strange gambas behaviour ?
>
> When I run my project, I get an error saying me that I gave an incorrect
> type : but the stack trace is empty (Fmain.fmain.0) and I it does not show
> me where I did the error.
>
> I've attached a screenshot, my project in a compressed format (zip) and my
> configuration.
>
> Thanks in advance for your help.
>

It's a bug in the compiler.

        Private brouillon[6, 6] As New Integer

is not syntactically correct. But the compiler instead compiles 
something incorrect.

You should write:

        Private brouillon As New Integer[6, 6]

Regards,

-- 
Benoît Minisini

------------------------------------------------------------------------------
Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
MVPs and experts. ON SALE this month only -- learn more at:
http://p.sf.net/sfu/learnmore_122712
_______________________________________________
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user

Reply via email to