Hide object names from view in database

CarlyS

Registered User.
Local time
Yesterday, 21:50
Joined
Oct 9, 2004
Messages
115
I am trying to avoid having my form or report names visible in that top blue bar of the database. When I set the form's pop-up property to yes I was having trouble with forms being maximized. Is there another way to have them not show, or is there a better way to use the pop-up function?

Thanks!
Carly
 
To CarlyS:
Try these settings in form design:
Pop Up = No
Border Style = None
Control Box = No
Scroll Bars = Neither
Record Selectors = No
Navigation buttons = Yes
This should get you what you want for your form, also
try resizing your form to fit. Hope this helps,Flixx.
 
You could add the following code on the on Open Event of the form/report

Code:
me.caption = " "

Make sure you put a space between the quotes.

Regards
Andy
 
Andy is clever...

Thank you both for your suggestions.

I went with me.caption = " " and it works great!
I never thought of doing that.

Thank you so much for all of your help,
Carly
 

Users who are viewing this thread

Back
Top Bottom