All Menus & Toolbars Missing In Access

Nov 14, 2006

I started access today and all my icons and menus are gone from the interface. I am forced to right click on all my queries and tables to perform any action. All I have at the top of my window is the usual "Microsoft Access" caption. Absolutely nothing else. Other than that, Access is fully functional provided I can use the right click commands. Has anyone encountered this? Help!

-Nino

View Replies


ADVERTISEMENT

Toolbars And Menus Have Gone

Mar 16, 2006

I did something in the start up options with this database.

Now when I open it I can't get Access to function as normal.

There is no right click, no tool barr or menu.

Any ideas?

View 1 Replies View Related

No Toolbars, Menus Or Tables

Nov 22, 2007

Hi All,

A previous employee of the company I work for setup an access database, which works well. But he populated some drop down lists and didn't give us the option to add additional items to those lists.

He has also done something that when the database is opened the usual access menus and toolbars disappear.

I'm pretty sure that the lists are collected from a table in that database, but I can't view the tables either :(

I have managed to get the start form into design view and also to open the code builder, but I can't see anything in there.

If anyone can offer any help or suggestions on how to access the tables when it's been locked out, I'd be grateful.

Kind regards,

Rich

View 3 Replies View Related

Toolbars Missing On Report Preview

Dec 21, 2004

Hi,

The problem is when the users views a report there is no toolbar for them to print the report. The user can click on file print but they would prefer to see the icons on the toolbar.

I have set the startup to not show the toolbars I have also tried just to show each one individually with no joy.

How do I show the print preview toolbar. I do not want the user to be able to design the report I only want to allow them acccess to print the report or maybe export to word.

Any help I would be greatfull. Thanks PWF

View 2 Replies View Related

Hide All Access Toolbars And Menubars

Nov 22, 2005

The below code will hide ALL menu bars and ALL tool bars. Ensure that you have a way to unhide the menu bars and tool bars before you hide them! You should place the hide all tool bars routine in your opening splash screen form for it only needs to be run once when the db is first opened.

This will hide all menu bars and tool bars
Dim i As Integer
For i = 1 To CommandBars.Count
CommandBars(i).Enabled = False
Next i

This will unhide all menu bars and tool bars
Dim i As Integer
For i = 1 To CommandBars.Count
CommandBars(i).Enabled = True
Next i

An added bonus is the right-click mouse button option is disabled if the menu bars are disabled with the above code.

Use the 'ShowToolbar' command if you need to display a tool bar or menu bar...
DoCmd.ShowToolbar "YourToolBarNameHere", acToolbarYes

This will hide a tool bar or menu bar when needed...
DoCmd.ShowToolbar "YourToolBarNameHere", acToolbarNo

This will hide the menu bar...
DoCmd.ShowToolbar "Menu Bar", acToolbarNo

You can also hide/unhide the database window with code...

Hide the database window
DoCmd.SelectObject acTable, , True
DoCmd.RunCommand acCmdWindowHide

Unhide the database window
DoCmd.SelectObject acTable, , True

Remove the "Type a question for help" on the default menu bar in Access 2002 or 2003
Application.CommandBars.DisableAskAQuestionDropdow n = True

This command will prevent the db from opening up a separate window tab on the Taskbar
Application.SetOption "ShowWindowsinTaskbar", False

The above commands have been successfully tested with Access 97 and Access 2003.

Read this if you do not understand where to post your questions! >>> Please Read Before Posting (http://www.access-programmers.co.uk/forums/showthread.php?t=63576)

Please do not directly PM me with any questions related to my Hide all Access Toolbars and Menubars code. Please do not post any questions related to my Hide all Access Toolbars and Menubars code in the Code Repository forum. If you have a question related to the Hide all Access Toolbars and Menubars code... Please post your questions in the appropriate forum and include a link to this thread if you have a question or problem related to my Hide all Access Toolbars and Menubars code. I will be glad to help if I see your post and if I am available.

Key words: toolbars, tool bars, menubar, menu bars, hide, unhide, enable, disable, right click, right-click, database window, hide database window,

View 5 Replies View Related

How Do You Hide Top Toolbars When Open Database - Access 2007???

Feb 29, 2008

I want to hide the top toolbars when my users open my database in Access 2007! i have an autoexec macro to maximise the window which gets rid of the navigation bar on the side but cant work out how to hide the top bar? do i need to write code? if so what code and where would i input it.. any help would be much appreciated...

many thanks,

Gaz

View 12 Replies View Related

Access 2007 And Menus

Feb 26, 2008

Hi all,

After searching through the "search" field, I realize lots of us are having problems with the menu's in access 2007.

After converting my 2003 DB to 2007, my menus are still there, but displayes as Add-ins instead of as the menu bar. I can't find any options to change during the conversion.
I have tried importing my Logon window with the options "menus and icons" clicked, but this didn't change anything.
If I open the DB in 2003 Format, then go to the options in Access 2007 I can choose the menubar, but if I convert to 2007, the menubar is only available as add-ins. Is there any way round this?

Appreciate any help - it is so time consuming trying to figure this out - and I seem to go round in circles, ticking options on and off... perhaps some dear soul has already found the answer!

View 2 Replies View Related

Menus In Access 2003

Mar 22, 2008

Hi, I have hidden all the menus and added one of my own custom menus to a DB that I was creating. That DB has been completed. Now when I open a blank DB to commence again, I have the same hidden menues and my one custom menu. Is there away in Access 2003 that I can replace the template, for example, MS Excel and Word have .dot and personal.xls. Is there an easy way to bring them all back. I checked in startup for a restore defaults, however this does not work. Any ideas. Garry

View 1 Replies View Related

Viewing Customised Menus In Access Runtime

Dec 18, 2007

I have set up a secured database using access 2003 which I want to roll out to users who will only have access runtime installed on their pc's.
The problem is there are some additional options that I want to add to a new menu (export, change password etc) that I need them to be able to view in runtime - when I set up a new menu in access 2003, it doesn't seem to be visible on anybody else's PC when they are logged into the database regardless of whether they have full access or runtime.

Can anybody help?
Many thanks

View 3 Replies View Related

Access 2007 Datasheet Field Dropdown Menus

Dec 14, 2007

:eek: Our office is planning to switch over to MS Office 2007 including Access 2007. I've just been looking into converting our Access 2003 databases to the new version. One thing I noticed about the datasheets appearing as subforms is that each field header/label/caption/column selector thingie has a dropdown menu. The down arrow of the dropdown menu takes up valuable realestate where the field name is being displayed.

Question:
Is there a way to turn off those individual datasheet dropdowns and get rid of the arrows so that the form doesn't have to be redesigned, due to increased column width considerations which the down arrows cause, just to display the full field labels as they always have been in Access 2003?

Thanks in advance for any help!

Cheers!
Goh

View 9 Replies View Related

Access 2003 Runtime Version And Shortcut Menus

Mar 14, 2006

I have developed an application and packed it into a runtime version.
However, in the runtime version the shortcut menus do not work. The reason why I want the user to have that possibility is that the application has two hyperlink fields and it is much easier for the users to be able to browse to the documents instead of typing each link with all the errors that might give as well.
Any help would be appreciated.

View 4 Replies View Related

General :: Create MDE With All Menus And Shift Key Access Disabled

Jul 18, 2014

How I can create an MDE with all options disabled including shift key bypass.

I want to remove all options in Tools>Startup except for the status bar.

I have tried using this code but am not getting anywhere with it

CurrentDb.Properties("AllowByPassKey") = 0

View 8 Replies View Related

Unhide / Unlock Normal Access Table View And Menus

Oct 11, 2007

Hi..

I got a access file from a friend of mine, but when i open it in access, i don't see any tables or the standard menu buttons.

The only menu i see, is a docked menu with a couple of submenus, wich in turn open forms, where you can enter data..

How can i see the tables and bva script behind this access file?

I tried F11 and Alt-F11, but is does nothing.

He won't tell me how he did it, because he doesnt like to share what he knows...

Can anyone help me??

Thanx !

View 6 Replies View Related

Forms :: Context Menus Don't Work When Access Window Is Minimized

Sep 24, 2013

I recently completed a db for a client and they have since asked that the access window be hidden for certain types of users.This I did using

Code:
ShowWindowAsync Application.hWndAccessApp(), SW_HIDE

if a relevant user opened the db. All well and good, except they then wanted to be able to see the Access link in the taskbar (which SW_HIDE doesn't do) - so I changed it to SW_MINIMISE and they were happy again until..They then realised (and it was a surprise to me as well) that the right click context menus used to filter and sort continuous or datasheet forms were no longer available to these users - nor was the context menu for datasheet columns to freeze or hide columns - see attached.

I've experimented with a number of options and these context menus are available if ShowWindowAsync is not called or if called with SW_HIDE, but not for SW_MINIMISED, SW_SHOWMINIMISED, SW_SHOWMINNOACTIVE, SW_SHOWNOACTIVE.

Why the shortcut menus are not available when the Access window is minimised? The requirement being that the context menus are available to all users the Access link appears on the task bar for all users the access window is hidden for some users.I should say that due to hiding/minimising the access window all forms are popup and modal.

View 1 Replies View Related

Lost Menus In Access... No View Or Tools After I Messed With Tools/Startup

Dec 17, 2004

I wanted a Switchboard page in Access to open automatically when the database was opened. I've done that but, as I did it, while in the Tools/Startup to set Display Form Page (in this case a switchboard page but it's not opening full screen and I ow have no way of editing anything), I stupidly de-selected the options there...
Display database window, Display status bar, Allow built in tool bars allow toolbar/menu changes.

Now I have lost the tools Menu, the View Menu and others (where one sees, File, View etc at the top of the window) and I can't work out how to get them out. I can no longer view my Access pages in Design View so I can't amend the any pages.

Can anyone tell me how to get my View and Tools menus back on my Access app window?? It's a bit of an emergency... been up all night and have to hand this in as coursework at uni in about 3 hours and I've screwed up right at the end and can't do the last couple of things before putting it on a CD for my tutor to mark.

Help!

I'd also like to know how to get it to open the first form at full screen.

Thanks.
Ceri

View 1 Replies View Related

MS Access 97 To MS Access 2002 SP3 - Option Value Missing

Apr 18, 2007

I converted an old Access 97 "mdb" to Access 2002 SP3.

I then added an option button within a frame. The problem is the new option buttons properties does not include "Option Value". How do I get this property to show up within the properties?

View 4 Replies View Related

ToolBars

Dec 31, 2005

Hello People,

I was not sure were to post this question so i thought "General" would be a start.

I have a number of toolbars i would like to copy to a new database i am not sure if this can be done, but any help will be useful to me as i am stuck on this issue.

Alastair

View 2 Replies View Related

Toolbars On Startup...

Aug 30, 2005

On my database, for startup, I had the toolbars taken away from the user. Is there a quick shortcut to pull them back up? I noticed that the 'Tools' option is gone.

Thanks.

View 1 Replies View Related

Can I Turn Off The Toolbars?

Jan 13, 2006

i am wanting to find some way of turning off the menus and toolbars in a startup macro and is it possible to turn off the warning messages that appear when appending or deleting rows in a table. many thanks

View 3 Replies View Related

Toolbars Disabled?

Feb 26, 2007

hello,

I have this filename.mdb file which was given to me for revision, so I opened it with MS access but once I opened it, the toolbars are disabled so I can't switch to form view, design view etc. How can I resolve this? I remember when I once did VBA Access that you can do this 'disable' thing. Only that I forgot it how now. So if anyone could please help me in this? I need to 'have those toolbars back' so I can start editing the file. Please do help me.

Thanks in advance

View 2 Replies View Related

Enable Toolbars

Jan 28, 2008

Hello Guys,
I need to know how to enable toolbars and edit a text in a report...
the database is locked by previous employee and I can't get to design view so I can change a text... There isn't any tool bar up there.. just EXIT button..

Thank you in advance.

View 6 Replies View Related

Form Toolbars

Dec 26, 2006

I would like to hide the toolbars on the form.
Could you please explain to me to do it?
Thanks

View 1 Replies View Related

Custom Toolbars

Mar 8, 2005

i must be overlooking something obvious, but....

how in the world do you put in the little gray separators in a custom toolbar? you know, to keep similar buttons in logical 'groups' on the toolbar...

View 1 Replies View Related

Missing Dao 3.5 Access 2003`

Dec 17, 2005

Hello,

when I open a db created in access xp in access 2003 I get this error the first time I open a form:

Quote: Your Database or Project contains a missing or broken reference to the file 'DAO350.dll' version 5.0

* ... you mus fix this reference.

When I open it in code to look at the refs it isn't there and neither are ANY DAO's.

HOW can I remedy this?

THANKS

View 3 Replies View Related

Help With Accessing Toolbars And Right-clicking

Dec 5, 2006

Hi all! Hope you can help me yet again!

My company recently completed a fairly large website for a local travel-agency. The website runs on a MsSQL and .net platform, but (It is a big but(t) by the way) a pricing calculation database is a old MS Access 2000 application.

The users of this DB have MSA2000 installed on their computers, and the database is made with one application DB and connected tables.

My problem is that I have to make some small changes to this DB, but when I start it up, the toolbars is hidden and right-clicking is disabled. (F11 works).

Is there a workaround this problem?

View 1 Replies View Related

Missing Toolbox In Access 2003

Aug 22, 2006

:confused: The View>Toolbox menu item is grayed out on an Access 2003 database I am using yet it is visible if I start a new database. So the problem seems specific to the db - can anyone help me out?

View 2 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved