Hello,
Can anyone tell me how to
create control at run time
plz give me the example
Bye
Printable View
Hello,
Can anyone tell me how to
create control at run time
plz give me the example
Bye
Code:Dim objFrm As Form1
Set objFrm = New Form1
This Will make a textbox control
Code:Dim txt As TextBox
Set txt = Form1.Controls.Add("vb.textbox", "text1", Form1)
txt.Visible = True