navigation pane

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?
 
D

derek

Hi Pietro

Try this

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

hope it works for you.

Derek
 
P

Pietro

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?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top