Forums
New posts
Search forums
Members
Current visitors
Log in
Register
What's new
Search
Search
Search titles only
By:
New posts
Search forums
Menu
Log in
Register
Install the app
Install
Forums
Archive
Newsgroup Archive
Access Newsgroups
Access Reports
Report Sections - Controls
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
Reply to thread
Message
[QUOTE="Marshall Barton, post: 2466375"] Use the Visible property. Me.Detail.Visible = False or Me.sometextbox.Visible = False If you want them to show on some records and be hidden on other records, don't forget to make it Visible too. If somecondition Then Me.sometextbox.Visible = True Else Me.sometextbox.Visible = False End If or more succinctly: Me.sometextbox.Visible = (somecondition) [/QUOTE]
Verification
Post reply
Forums
Archive
Newsgroup Archive
Access Newsgroups
Access Reports
Report Sections - Controls
Top