Zoom on text box control in form when double click

  • Thread starter Thread starter Spidey3721
  • Start date Start date
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.
 
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
 
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
'Zooming' in Access RT 2
ability to open zoom box features 2
Configuring the ACCESS Zoom Box 4
DoubleClick event 3
Zoom Box Font 2

Back
Top