Create a pop up notes box

S

Steve Schapel

.... or, if it's impractical to teach the shortcut key combination to all
the users, use code like this...
DoCmd.RunCommand acCmdZoomBox
.... for example, on the DblClick event of the form control that your
Notes relate to, or the Click event of a Command Button. Well, if you
use a command button, you will also need your code to do this, before
the ZoomBox method...
Me.YourNotesControl.SetFocus
 
Top