' Gambas class file PRIVATE test AS String[30, 30] PUBLIC SUB my_test() test = ["Voice", "Logon"] '<---If I REM this, there is no runtime error on next line test[0, 1] = "Logon" '<---Runtime error: Bad Number of Dimensions PRINT test.count END Gambas2 -Fernando