Zoom Box

  • Thread starter Thread starter TeeSee
  • Start date Start date
T

TeeSee

Any field in a form can be opened in zoom by "shift F2". How can I put
shif F2 into code behind a double click event?
 
TeeSee said:
Any field in a form can be opened in zoom by "shift F2". How can I put
shif F2 into code behind a double click event?

RunCommand acCmdZoomBox
 
TeeSee said:
Where and how do you do that?

Since you asked about code in a double-click event, I assume that's
where you want to do it. An example event procedure might look like
this:

'----- start of example code -----
Private Sub txtMyTextbox_DblClick(Cancel As Integer)

RunCommand acCmdZoomBox

End Sub
'----- end of example code -----
 
Not being the sharpest knife in the drawer when it comes to code I
didn't quite "get" what to do with "acCmdZoomBox". Also I usually know
what I want to do but not sure how to. Sincerely appreciate you taking
the time to follow thru for me. Thank you!

Best regards
 
Back
Top