[Gambas-user] [Gambas-devel] Version 1.

Ron Onstenk ronstk at ...239...
Tue Aug 29 18:45:54 CEST 2006


On Tuesday 29 August 2006 18:20, Rob Kudla wrote:
> On Tue August 29 2006 10:22, Scott, Vince wrote:
> >   Dim aMyArray as Variant
> >
> >   aMyArray = Array{"1","2","3"]
> 
> I didn't know that ever worked.  You have to do this:
> 
> dim aMyArray as Variant
> 
> aMyArray = ["1", "2", "3"] 
> 
> > 2.) I really like the new MDI for Gambas. When will this
> > become the stable version???
> 
> Benoit is going to say "when it's done" ;)  I did make an MDI 
> version of the stable series, but that was a year and a half 
> ago, and it was not half as good as what they've done with the 
> development series.  If you'd like to try it anyway, google for 
> "fakebas".
> 
> Rob

Once Oh Once it was
  Dim aMyArray as Variant

  aMyArray = Array("1","2","3")

!! Look to the pharentesis !!

Now is should be posible to use
  aMyArray = ["1","2","3"]

with square braces.

Ron




More information about the User mailing list