Creating new textbox

shingo99

New member
Joined
Dec 16, 2004
Messages
3
Programming Experience
Beginner
hello,
im not sure if this is the place to post this thread, if not then im sorry for the mistake.
i need some advice bout creating a new textbox upon button click
meaning the more the user click on the button the more textbox will be created.
i have figure that naming it wont be a problem if it is array status.
so i require some advice whether i can do this function or not.
if can, where can i get some reference or tutorial on doing this function
or if it is possible, can i get the code just for this function?
thank you in advance
 
VB.NET:
Friend WithEvents txtInput As System.Windows.Forms.TextBox
Me.txtInput = New System.Windows.Forms.TextBox
Me.txtInput.Location = New System.Drawing.Point(56, 24)
Me.txtInput.Name = "txtInput"
Me.txtInput.TabIndex = 3
Me.txtInput.Text = ""
Me.Controls.Add(Me.txtInput)

or something like that anyways
 
Back
Top