Pop Up Memo Field, is this possible?

  • Thread starter Thread starter Dave Elliott
  • Start date Start date
D

Dave Elliott

I have a form named TimeCards where I have a memo field named Job
Description
Is there a way to make the memo field pop-up so as to better view and edit
the contents?
Thanks,

Dave
 
What is the code equivalent for this? I need a button for my users to push
instead!
 
Dave Elliott said:
What is the code equivalent for this? I need a button for my users to
push instead!

' Set the focus to the control that had the focus
' before this button was clicked.
Screen.PreviousControl.SetFocus

' Ask for the "zoom box".
RunCommand acCmdZoomBox
 
Back
Top