Zoom In

  • Thread starter Thread starter Jeannie
  • Start date Start date
J

Jeannie

Good Morning,

I have a continuous form that includes a text box bound to
a memo field. I would like for the user to be able
to "Zoom in/out" of this field in order to view/edit the
text. Since its a continuous form, adjusting the height
using the got focus/lost focus events makes the form
sloppy.

I thought there was a function in utils.mdb but can't find
any information on it.

Please help!!!
 
Good Morning,

I have a continuous form that includes a text box bound to
a memo field. I would like for the user to be able
to "Zoom in/out" of this field in order to view/edit the
text. Since its a continuous form, adjusting the height
using the got focus/lost focus events makes the form
sloppy.

I thought there was a function in utils.mdb but can't find
any information on it.

Please help!!!

Code the Control's Double-click event:

DoCmd.RunCommand acCmdZoomBox
 
Back
Top