zoom box opening

J

JohnE

I have several fields that have a double click event attached to open up the
zoom box. (code is DoCmd.RunCommand acCmdZoomBox)
What I am wondering is can the name of the form in the caption area be
changed to a custom name? If so, how would that be done?
Thanks
.... John
 
D

Damon Heron

Are you asking about the main form or the zoom box form? If zoom box form,
then the answer is no. You can design your own zoom box though. If you
mean the main form, then in the double-click event, before the doCmd, put
me.caption = " your name here"

Damon
 
Top