VB Code:
  1. Dim MyA(0 to 1, 0 to 2) As String
  2.  
  3. MyA(0) = "hello"  'Why can't I assign a stupid string to the first level of the array?
  4. MyA(0,0) = "hello"   "I dont want to do something like that!
  5.  
  6. 'is what i'm trying to do impossible?