Moin,

Just found this one, don't know if it's been removed in Gambas3. When I 
define several arrays of strings on one line within a SUB, later the 
names are recognized. Example:

DIM sMyStrings1, sMyStrings2 AS NEW String[]

Then type

sMyStrings1.

and the list with "Add, Bounds, Clear..." will appear.

However, if I define the arrays outside the SUBs for public use, they 
will be recognized only if defined solely one by one on a separate line 
each, i. e.

PUBLIC sMyStrings1, sMyStrings2 AS NEW String[]

then within a SUB type

sMyStrings1.

and nothing happens, but if I do

PUBLIC sMyStrings1 AS NEW String[]
PUBLIC sMyStrings2 AS NEW String[]

they are recognized.

Or am I doing something false here the interpreter will understand wrong?

Regards

Rolf

------------------------------------------------------------------------------
Gaining the trust of online customers is vital for the success of any company
that requires sensitive data to be transmitted over the Web.   Learn how to 
best implement a security strategy that keeps consumers' information secure 
and instills the confidence they need to proceed with transactions.
http://p.sf.net/sfu/oracle-sfdevnl 
_______________________________________________
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user

Reply via email to