i wanted to create textboxes at run time . Is it possible ???
Printable View
i wanted to create textboxes at run time . Is it possible ???
in VB 6 you can do this with the Add method of the Controls collection.
Dim l as Control
set l = me.Controls.Add("VB.Textbox", "mylabel")
l.Visible = true
l.Top = 0
l.Caption = "test"
...unless you want to use Control arrays and use the Load function.