How can i make the detail section of the form invisible ? I have 2 controls in the details section that are made invisible at first but still the word "name?" appears on the form and the form will look better without it
How can i make the detail section of the form invisible ? I have 2 controls in the details section that are made invisible at first but still the word "name?" appears on the form and the form will look better without it

This month, every Windows Secrets subscriber can download a one-chapter excerpt of Windows 7: The Missing Manual.Windows 7: The Missing Manual provides valuable information to help you overcome these difficulties in learning a new operating system. Subscribe today to download your free excerpt.
You can click in an empty part of the Detail section, then set the Visible property to No.
But if I were you, I'd investigate why the text boxes show #Name?. This indicates that there is something wrong in your form. Hiding the problem will not solve it.
Thank you for the reply.I have no other problems besides the apearance. How can i refer to the detail section in the OnOpen event? Something like as Me!Section0.visible = False.After the opening i will again make the detail section visible
regards
Open the form in design view.
Click in an empty part of the detail section.
You'll see the name of the detail section in the title bar of the Properties window, and of course in the Name property.
If you wish, you can change the name.
Use this name in your code.
Alternatively, you can refer to it as Me.Section(acDetail)