Calendar Program (dynamic controls)

Valerie

Member
Joined
Feb 27, 2005
Messages
7
Programming Experience
Beginner
I have to create a calendar program. The textboxes have to be created dynamically. I have to use a 2 dimensional array. I'm at the end of the code and now I'm stuck with Me.Controls.Add ()

I have everything else set but I'm stuck. I don't know what is supposed to go in the parenthesis after Add. Any help would be appreciated. Thanks

Valerie:(
 
The control you want to add goes in there. eg:
VB.NET:
dim txt as new textbox
me.controls.add(txt)

TPM
 
Back
Top