Memo Zoom Box Trigger

  • Thread starter Thread starter Jasmine
  • Start date Start date
J

Jasmine

On my form I have a Memo Field that I need to expand using the

SHIFT/F2 Command.

I don't want the user to remember to use the SHIFT/F2
But would rather they Double click on the memo to activate the command,
but don't know the function to open the Zoom Box


How do I go about getting and activating this.

Do I use the SendKeys function.
 
Jasmine said:
On my form I have a Memo Field that I need to expand using the

SHIFT/F2 Command.

I don't want the user to remember to use the SHIFT/F2
But would rather they Double click on the memo to activate the
command, but don't know the function to open the Zoom Box


How do I go about getting and activating this.

Do I use the SendKeys function.

Ack! Never use SendKeys.

DoCmd.RunCommand acCmdZoomBox
 
Back
Top