Hello, I have a program that contains a 2d grid of panel objects and I just realized that the computer I need to run this program on does not use .Net4 and I cannot upgrade its framework either. Because of this, I have to rewrite the program in vb6, which was not so bad until I had to make the grid of panels... Here is the code I am using in vb2010 to make the grid and I was wondering how to transcribe this into vb6.
Dim regionGrid(0 To 37, 0 To 37) As System.Windows.Forms.Panel
(in nested loop)
regionGrid(i, j) = New System.Windows.Forms.Panel()