Changing Text Box Size and Location on a form, at run time with Access Xp

D

Developer

Hello All,
Is it possible to change the size of the text box (or any other control) on
a form at run time, by Drag and drop or resizing borders using the mouse
events. (Just like the design mode but the user will use it at run time on
form view).

Thanks in advance...
 
R

Roger Converse

You should be able to resize in your code if necessary.

Me.control.Visible = True
Me.control.Height = 1000
Me.control.Width = 1000

Don't forget to set them back when you are done.
 

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

Top