E enonod Well-Known Member Licensed User Longtime User Dec 24, 2011 #1 I get an error asking for a ) after , Can I not populate an array as follows? Dim aArray(3,2) as Int aArray=Array As Int((2,0),(1,3),1,0)) i.e. 0,0=2 0,1=0 1,0=1 etc Last edited: Dec 24, 2011
I get an error asking for a ) after , Can I not populate an array as follows? Dim aArray(3,2) as Int aArray=Array As Int((2,0),(1,3),1,0)) i.e. 0,0=2 0,1=0 1,0=1 etc
Erel B4X founder Staff member Licensed User Longtime User Dec 24, 2011 #2 Currently you can only use Array keyword with single dimension arrays. Upvote 0