Aug 6, 2010 #1 Baesucks Programmer Joined Mar 10, 2008 Messages 37 Location US I would like to minimize the navigation pane via vba code when my main form opens (minimize, not hide). Does anyone know how to achieve that?
I would like to minimize the navigation pane via vba code when my main form opens (minimize, not hide). Does anyone know how to achieve that?
Aug 6, 2010 #2 Remou Technical User Joined Sep 30, 2002 Messages 13,030 Location BE If you mean the Access window, this may help: http://www.tek-tips.com/faqs.cfm?fid=2562 http://lessthandot.com Upvote 0 Downvote
If you mean the Access window, this may help: http://www.tek-tips.com/faqs.cfm?fid=2562 http://lessthandot.com
Aug 6, 2010 Thread starter #3 Baesucks Programmer Joined Mar 10, 2008 Messages 37 Location US Nope, I meant the Navigation Pane found in Access 2007 (aka. shutter bar). Upvote 0 Downvote
Aug 7, 2010 #4 Remou Technical User Joined Sep 30, 2002 Messages 13,030 Location BE Try: Code: DoCmd.NavigateTo "acNavigationCategoryObjectType" DoCmd.Minimize http://lessthandot.com Upvote 0 Downvote