Auto Add Textboxes in Forms

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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!
 
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)
 
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)
 
TextBox1.Visible = False

--

HTH

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

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top