Zoom on text box control in form when double click

S

Spidey3721

I am trying to get a textbox to ZOOM when a user double clicks it (I can get
it to zoom by using the SHIFT+F2 shortcut). It's a memo type textbox and the
content sometimes spills beoyond the size of the control itself.
 
R

Rick Brandt

Spidey3721 said:
I am trying to get a textbox to ZOOM when a user double clicks it (I can get
it to zoom by using the SHIFT+F2 shortcut). It's a memo type textbox and the
content sometimes spills beoyond the size of the control itself.

In the Double-Click event for the TextBox run code...

DoCmd.RunCommand acCmdZoomBox
 
K

Ken Snell

Private Sub TextBoxName_DblClick(Cancel As Integer)
DoCmd.RunCommand acCmdZoomBox
End Sub
 

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

Similar Threads

Zoom box end of text 1
Zoom Box command button 4
Zoom form from Double-Click 2
DoubleClick event 3
Configuring the ACCESS Zoom Box 4
ability to open zoom box features 2
Zoom Box Font 2
Memo Zoom Box Trigger 3

Top