Hi everyone
I have to generate a bunch of datagrids. The # number of datagrids needed
will be told by a method.
That's why I have to build an array of datagrids
....
Datagrids[] grids = new Datagrids[numberofgrids];
// initialize grids ....
....
Everything works find. The only question I would like to know why after I
creat each datagrid programatically, I can not see it.
Did I miss something? Please instruct me.
Thanks