navigation pane

  • Thread starter Thread starter Pietro
  • Start date Start date
P

Pietro

Hi,
I'm using the below code to show the navigation pane in Access 2007:
If [Frame101] = 1 Then DoCmd.SelectObject acTable, "", True
How can i hide it again?
 
Hi Pietro

Try this

Application.Echo False
DoCmd.SelectObject acTable, "", True
DoCmd.RunCommand acCmdWindowHide
Application.Echo True

hope it works for you.

Derek
 
Thank you very much Derek
It works fine

derek said:
Hi Pietro

Try this

Application.Echo False
DoCmd.SelectObject acTable, "", True
DoCmd.RunCommand acCmdWindowHide
Application.Echo True

hope it works for you.

Derek

Pietro said:
Hi,
I'm using the below code to show the navigation pane in Access 2007:
If [Frame101] = 1 Then DoCmd.SelectObject acTable, "", True
How can i hide it again?
 
Back
Top