Can any one help me with this problem.. i'ld really appreciate ne help..
wat i wanna do is.. dat i want to dynamically create objects on a way that they could be created in a loop..
so i thot an array of object could help
so i went ahead and wrote this code in a form load event..
Code:
Form1[] formarray = new Form1[4];
for (int i = 0; i < 4; i++)
{
formarray[i] = new Form1();