How do you make 2 dimsional arrays
for example I'm making a mock store for my systems class and I want products to be under catagories so I have like a coleman 2-person tent under the catagory of Tents. I was trying to use something like
Public Products(39,39) as string (I know hard code is bad but this program doesn't need to be scaleable)
then
Products(0) = "Tents"
Products(0,0) = "Coleman 2-person tent"
I get a compile error on the first
Any help would be appriciated.




Reply With Quote