Hide Caption Section

  • Thread starter Thread starter jutlaux
  • Start date Start date
J

jutlaux

I am working with a pop up form and would like to hide the section of the
form that if you entered one the caption would go. I currently have that
caption properties blank and when the form opens it says {form name}: From

I do have
Control Box = No
Min Max Buttons = none
Close Button = No
Whats This Button = No

Thanks.
 
That just makes the caption section blank.

What I want to do is get ride of blue (in my case) section whater the
caption goes. With you seggestion the caption is blank, but that area is
still there.

Thanks.
 
Thanks.

I already had that set to to none and it still didn't work. I eventually
found that my open statement was the problem, the original statement was:

DoCmd.OpenForm stDocName, , , stLinkCriteria, , acDialog

and when I changed it to

DoCmd.OpenForm stDocName, , , stLinkCriteria

everything worked fine.

Thanks for your help
 
Back
Top