Zoom form from Double-Click

  • Thread starter Thread starter Peter Hibbs
  • Start date Start date
P

Peter Hibbs

I have a Continuous form (A2003) with several bound Text box controls.
If I click on a Text box and press SHIFT + F2 I can open the Zoom
form to edit the text. However, my users tend to use the mouse much
more than the keyboard on this form so is there any way I can
double-click on a Text field and open the Zoom form?

I have tried SendKeys in various configurations but nothing works
(i.e. form does not open).


Peter Hibbs.
 
I have a Continuous form (A2003) with several bound Text box controls.
If I click on a Text box and press SHIFT + F2 I can open the Zoom
form to edit the text. However, my users tend to use the mouse much
more than the keyboard on this form so is there any way I can
double-click on a Text field and open the Zoom form?

I have tried SendKeys in various configurations but nothing works
(i.e. form does not open).

Peter Hibbs.

Code each control's Double-click event:
DoCmd.RunCommand acCmdZoomBox
 
Back
Top