Textbox Control

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

Guest

Hi there,
I have a command button, and when the user clicks the command button a text
box is automatically added to the form. If the user clicks this button again,
another text box is added below the one previously added.

Is it possible to do this without me creating infinite textboxes prior to
the runtime of the form?

Thanks
 
Hi there,
I have a command button, and when the user clicks the command button a text
box is automatically added to the form. If the user clicks this button again,
another text box is added below the one previously added.

Is it possible to do this without me creating infinite textboxes prior to
the runtime of the form?

Thanks

I don't think this is a very good idea.
You are limited to 754 controls on a form ... over the life of the
form. So even if you then deleted some of the controls it still counts
towards the 754.

See Access help...
Index + Specification + Access Specifications.

Better to have x number of controls on your form, and make them
visible or not visible as needed.
 
Back
Top