Jun 22, 2005 #1 tizwaz Technical User Aug 8, 2002 437 GB HOw can I make a custom toolbar only visible when one particular form is open?
Jun 22, 2005 #2 dhulbert Technical User Jun 26, 2003 1,136 GB Add some code the form open event and close event to make the toolbar visible and hidden as below For Each cb In CommandBars If cb.Name = "Forms" Then cb.Visible = True End If Next cb I love deadlines. I like the whooshing sound they make as they fly by Douglas Adams (1952-2001) Upvote 0 Downvote
Add some code the form open event and close event to make the toolbar visible and hidden as below For Each cb In CommandBars If cb.Name = "Forms" Then cb.Visible = True End If Next cb I love deadlines. I like the whooshing sound they make as they fly by Douglas Adams (1952-2001)