Hey guyz, i am trying to re-create a user control and align them on a form at run time. The code below runs well without any problems. the only is i don't see the control being re-created (Visible) on the form. This is a
VB.Net Proj.. if u know what i can do please help realtime!!
Dim continousFrm(3) As ctlRoaster
Dim i As Integer
For i = 1 To 3
continousFrm(i) = New ctlRoaster()
continousFrm(i).Visible = True
continousFrm(i).Location = New Point(34, 34)
continousFrm(i).TextBox3.Text = "45555"
Next i
Also, Is there away in
VB.Net i can have a continous form like in Ms Access, where i can put controls repeat itself. I dont wanna use data grid coz i can't add controls like dateTimePicker or combo box.
LION OF JUDDAH!