Pop Up Memo Field, is this possible?

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
 
D

Dave Elliott

What is the code equivalent for this? I need a button for my users to push
instead!
 
D

Dirk Goldgar

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
 
Top