How can I create a text box from code?

J

Jason Gyetko

I need to build a form on the fly using different variables, does anyone
know how I can create a text box from code? Thanks.
 
J

Jim Allensworth

I need to build a form on the fly using different variables, does anyone
know how I can create a text box from code? Thanks.
This approach has problems. There is a finite limit on how many
controls a form can hold - counting deleted ones.

Why not just prebuild the textboxes as not visible and simply set
their visibility property instead.

- Jim
 
Top