Aug 6, 2010 #1 Baesucks Programmer Mar 10, 2008 37 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 Sep 30, 2002 13,030 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 Mar 10, 2008 37 US Nope, I meant the Navigation Pane found in Access 2007 (aka. shutter bar). Upvote 0 Downvote
Aug 7, 2010 #4 Remou Technical User Sep 30, 2002 13,030 BE Try: Code: DoCmd.NavigateTo "acNavigationCategoryObjectType" DoCmd.Minimize http://lessthandot.com Upvote 0 Downvote