xaviermobius
Registered User.
- Local time
- Today, 20:45
- Joined
- Jul 25, 2006
- Messages
- 12
Good morning all,
Installed AC2007 on friday... then run one of my existing AC2003 db's on it.
Spent the next 48 hours trying to work out why all my command menus in AC2007 were missing. The property sheet and field list were both not displaying. The buttons to bring them up could be depressed, but nothing would happen.
Basically, I had used the following vba code in AC2003 to hide all the menus:
After realising this I used the following code to set them back to being visible:
This has restored my property sheet and field list!
However, the status bar hasnt been restored and I cant restore it using the checkbox in "Access 2007 Options".
Instead I am required to use the following line of code every time I run a DB:
This then displays the status bar. However, unlike the property sheet fix, when i restart access the status bar is again gone.
I am sure there will be others out there who experience this same problem in AC2007 and I could find nothing on google to help me. So hopefully the above will be of great help to someone else.
Could a seasoned pro please help me out by:
a) explaining why my property sheet and menu disappeared permenantly and not just for the current running instance of access 2007 (the property sheet and field list were gone when access was restarted, and even when I reinstalled the whole of Office!)
b) give me some help to reset the status bar so I dont have to run a command line everytime I start a new DB and want the status bar displayed.
Thanks muchly!
Installed AC2007 on friday... then run one of my existing AC2003 db's on it.
Spent the next 48 hours trying to work out why all my command menus in AC2007 were missing. The property sheet and field list were both not displaying. The buttons to bring them up could be depressed, but nothing would happen.
Basically, I had used the following vba code in AC2003 to hide all the menus:
Code:
Dim i As Integer
For i = 1 To CommandBars.Count
CommandBars(i).Enabled = False
Next i
After realising this I used the following code to set them back to being visible:
Code:
Dim i As Integer
For i = 1 To CommandBars.Count
CommandBars(i).Enabled = True
Next i
This has restored my property sheet and field list!
However, the status bar hasnt been restored and I cant restore it using the checkbox in "Access 2007 Options".
Instead I am required to use the following line of code every time I run a DB:
Code:
Application.CommandBars("Status Bar").Visible = True
This then displays the status bar. However, unlike the property sheet fix, when i restart access the status bar is again gone.
I am sure there will be others out there who experience this same problem in AC2007 and I could find nothing on google to help me. So hopefully the above will be of great help to someone else.
Could a seasoned pro please help me out by:
a) explaining why my property sheet and menu disappeared permenantly and not just for the current running instance of access 2007 (the property sheet and field list were gone when access was restarted, and even when I reinstalled the whole of Office!)
b) give me some help to reset the status bar so I dont have to run a command line everytime I start a new DB and want the status bar displayed.
Thanks muchly!