Zoom Box

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?
 
D

Dirk Goldgar

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
 
D

Dirk Goldgar

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 -----
 
T

TeeSee

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
 

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