Auto Add Textboxes in Forms

J

Jasper

In case of the Forms I use, it is Desirable to make them as compact as
possible. Stripped of any unnecessary items. It seems usefull to make a form
which ads a new textbox everytime something has been entered in the last one.

My question: "What Code should I use to get my forms to add a new textbox
everytime something has been entered in the last one?"

Thanks in Advance!
 
B

Bob Phillips

Don't do it. The maintenance makes it more effort than it is worth. Just set
them all up in design, and maybe hide them until needed.

--

HTH

RP
(remove nothere from the email address if mailing direct)
 
J

Jasper

How do I hide those textboxes then?

Bob Phillips said:
Don't do it. The maintenance makes it more effort than it is worth. Just set
them all up in design, and maybe hide them until needed.

--

HTH

RP
(remove nothere from the email address if mailing direct)
 
B

Bob Phillips

TextBox1.Visible = False

--

HTH

RP
(remove nothere from the email address if mailing direct)
 
Top