Here is the code that I am using (Thanks to Divil) to create a textbox on the fly:
Dim a As New TextBox()
a.Text = items(0)
a.Location = New Point(20, 75)
Controls.Add(a)
Now I would like to know how to create a variable that will calculate my next location of my text box.
Any ideas? Thanks! Mindi
Dim a As New TextBox()
a.Text = items(0)
a.Location = New Point(20, 75)
Controls.Add(a)
Now I would like to know how to create a variable that will calculate my next location of my text box.
Any ideas? Thanks! Mindi