Kaare_Larsen
October 17th, 2004, 12:07 PM
I need a two dimension array of Picturebox
I have been trying to do like this
PictureBox* array[][]=new PictureBox*[10][10];
and like this
PictureBox**array[]=new PictureBox*[10];
for (int i=0;i<10;i++)
array[i]=new PictureBox * [10];
Is they a way to declare multidimension array without using vektor or carray?
I have been trying to do like this
PictureBox* array[][]=new PictureBox*[10][10];
and like this
PictureBox**array[]=new PictureBox*[10];
for (int i=0;i<10;i++)
array[i]=new PictureBox * [10];
Is they a way to declare multidimension array without using vektor or carray?