Sizable textbox

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

Guest

Hello,

Is there a way to have a Sizable textbox?

I use a textbox with a Memo data type in a form. Is it possible to resize
the textbox by resizing a form (in Form View)?

What if it is in a sub-form? Could a sub-form be resizable, then would
follow the resized textbox?


Thanks,

Michael
 
Either way, you have to add code to resize the text box.

Forms have a Resize event. You'd put code in there to reset the Height and
Width properties of the text box, based on the new size of the form.
 
Back
Top