Would Changing Menu Bar Affect All Db's?

Apr 29, 2005

I want to know if I change the menu bar in an Access db (such as take out every thing, edit, view, format, tools, etc. except file and exit) would it remain that way in every other db that was opened on that pc?

I want to restrict access to every tool except file, exit on only one pc (a public pc) and I am afraid to mess around with this in the event I screw something up again like I almost did yesterday...Security on that one pc is all I need, because the program needs to be accessible to managers for reports. This pc is in an out of the way place that allows employees to "play around" in it and I am not sure enough about how to secure it any other way. So, I reasoned that if I could restrict ability to roam on that pc then that is all I would need.

View Replies


ADVERTISEMENT

Forms :: Two Comboboxes Don't Affect Each Other

Mar 12, 2013

In my database you can search on either number or name. I have therefor, two combo boxes. and it works well, except that...

When I pick by number first, and then try to pick another record using the name combobox, the number combobox still shows the first search I did. I would like the two comboboxes to interact with each other...

View 2 Replies View Related

How Does Normalizing Affect Current Queries And Forms.

Feb 1, 2007

How does normalizing affect current queries and forms?I need to normalize a database here at work, the original creator made one BIG table.My concern is how will that normalization affect the current queries and forms I have created based on the current table?I tried the Wizard but that wont do the job I will have to do it manually.Thanks

View 2 Replies View Related

Query Doesn't Affect Report... Related Problem

Nov 13, 2004

I've encountered a simple problem. =) I have a report based on a query. Of course due to the relations the query table should affect the report. But it does only with the filter parameters I put in the Query Design View, the quick ones ("filter by selection", etc.) that are in the result table view work there but doesn't affect the report. Still the query asks me to save it each time I apply any of these quick filters but make no changes at the end.

Any ideas how to make them work in the report? Or these filters are temporal and shouldn't work in that way? If so, what could I do to simplify customer's life?

(Access 2003, Access2000 based database)

View 2 Replies View Related

How To Make Negative And Positive Values Affect Queries Differently

Jul 10, 2014

I have created an Access 2010 Database for tracking inventory. As parts move to each location, quantities automatically subtract from the previous location. I now realized that some parts are destroyed.

The problem is the if I simply enter a negative value to indicated that a part was destroyed at one location, it appears as a positive value in the previous location. Is there a way to make negative values not affect a specific query?

View 4 Replies View Related

How To Show A Full Menu On The Menu Bar

Feb 19, 2007

Hi everyone,
I was trying out the options on the startup item of the tools item on the menu bar and my access window has gone except the following menu items: File,Window and Help.
Can someone kindly show me how to bring back these seemingly lost items?
Thank you for your willingness to help me out!

View 2 Replies View Related

Drop Down Menu Inside Drop Down Menu

May 15, 2006

Ok, This is something I have long wanted to do, but cannot figure out.

I am working on a database for a company that orders a large number of Items. I have these all in one table (itemCode, itemDescription, price, categoryCode, etc). I have another table with categorys (categoryCode, categoryDescription) . Each Item is asigned a categoryCode and the appropiate relationship exsists. Right now I have a comboBox in a form that when selected opens a drops down menu with all the Items. Then another one auto loads up (continuous form) and I get the same drop down list of all the Items.

What I would like to have is a combo box then when it is selected shows the categorys, then based on that selection, I see all the Items that are in that category.

I guess another way of saying this simply is, I would like to create a drop down menu inside of a dropdown menu.

Is this possible? Does anyone have another alternative suggestion that might work well? I'm relectant to use a list box, becoase ideally it would be a drop down menu inside of a drop down menu as seen on many websites.

Thanks in Advance!

:)

View 2 Replies View Related

Need Help With Menu Bar

Dec 9, 2005

Before anyone get to upset with me I did search the board looking for the answer but only got more confused. I found the code I wanted to shut down the toolbars and menu bars but I need to allow the print options on the menu bar. How do I allow the menu bar up but only allow printing ?

jon

View 4 Replies View Related

Help With Menu Bar

Apr 4, 2006

I have this code in the opening for of my database but the tool bar "passdown" does not open. Could someone please help me understand why?
thank you
jon


Private Sub Form_Open(Cancel As Integer)
ChangeProperty "StartupForm", dbText, "Frm-UserLogon"
ChangeProperty "StartupShowDBWindow", dbBoolean, False
ChangeProperty "StartupShowStatusBar", dbBoolean, False
ChangeProperty "AllowBuiltinToolbars", dbBoolean, False
ChangeProperty "AllowFullMenus", dbBoolean, False
ChangeProperty "AllowBreakIntoCode", dbBoolean, False
ChangeProperty "AllowSpecialKeys", dbBoolean, False
ChangeProperty "AllowBypassKey", dbBoolean, False
Dim i As Integer
For i = 1 To CommandBars.Count
CommandBars(i).Enabled = False
Next i
DoCmd.ShowToolbar "passdown", acToolbarYes

End Sub

View 2 Replies View Related

Menu

Oct 3, 2006

Hi,

I have a question.

I create a custom menu, and then assign hyperlink for running Excel application (C:Program FilesMicrosoft OfficeOffice10EXCEL.EXE). When I click on it, it has security message,

/////////////
Opening C:Program FilesMicrosoft OfficeOffice 10Excel.EXE

Some files can contain viruses or otherwise be harmful to your computers. It is important to be certain that this file is from a trustworthy source.

Would you like to open this file?
''''''''''''''''''''''''

How can I erase this security message? Thanks.

View 1 Replies View Related

Menu Bar

Feb 8, 2007

I was trying to change the form that appeared on Load by going to Tools>Startup and changing the settings there.

However now I have lost most my my menu bar i.e. Edit, View, Tools etc. I only have File, Window and Help. :eek:

How do I retrieve the menu bar in its original state?

View 3 Replies View Related

Menu Bar

Mar 1, 2008

In my access 2003 the principal menu is not more visible.

I have used the command:

CommandBars ("Menu Bar"). Visible = True

but it doesn't make to appear the menù.

What can I do?

View 2 Replies View Related

Pop Up Menu???

Aug 10, 2005

Hello,

I was wondering if there is a way that I can create a 'message' that will appear whent he mouse is scrolled over a button. I have command buttons that launch my reports but would want the user to know what fields are included in each report...therefor, they can put the cursor ontop of a certain button and a small list will show them what is in that specific report

Cheers :)

View 4 Replies View Related

Menu Bar

Apr 29, 2006

I have a question of creating a few menu bars.

I made 3 menu bars.

When the user log in the database, the database program will detect the user name, and then output his own menu bar.

It works fine.
However, I got a problem, when I created the first menu bar, the menu bar have control box for the forms, the other 2 menu bars do not have it.

How can I make 3 menu bars with control box, minimizs, maximinize, close form boxes?

View 1 Replies View Related

Menu Bar And Sub Menu

Aug 25, 2006

Hello, I have created my own Menu bar in access and would like to add sub menus to it.

Any help? Thanks.

View 3 Replies View Related

Menu Design...

Jun 27, 2005

I could not find Menu design in Access...Is it available during design time?
When I searched for it I found AddMenuItem to programatically add menu...
I vaguely remember seeing menu design in VB 3.0 7 years ago...I am looking for something similiar..

This probably the simplest and stupidest question..please excuse me for that.

Thanks

View 2 Replies View Related

No Tools Menu...?

Aug 4, 2005

I was just editing my Access database (stored on the intranet) when a message popped up saying "Disk or network error".

I clicked the only option ("ok") and closed the DB. When I reopened it, it said someone else was viewing it and I only had read permissions. I close it again, and see that in the directory where my .mdb file is stored I have the .ldb file remaining even though it isn't open.

I restart my machine, and try and open it again. I have to compact and repair the DB at Access' suggestion, yet now I only seem to have limited functionality....??

I.e. there is no Tools menu, I can't right click on forms or tables to choose Design View (although if I highlight them in the database pane and click the BUTTON for Design View I am able to proceed)....

What's going on?!!

I've tried going to File > Open and in the little arrow on the Open button choosing "Open Exclusive", but it opens and does the same thing as above...!!

I've checked a different database in Access, and I don't seem to have gone potty, in every other one I'm able to see the Tools menu, etc...?

Anyone got any clues as to how I can get my lovely database back on its feet and functioning properly? :confused: :eek: :rolleyes: :mad:

View 5 Replies View Related

Menu BAr Not Showing

Jan 3, 2006

:confused: hi ,,,
i have this Microsoft Application and i have unchecked the check box (Allow full menus ) in the starup ... So when ever i run the application i only get
the menu bars : File, Window, Help, AdobePDF

how can i get the other menu bars ?


any suggestions

thankx:o

View 6 Replies View Related

Import Menu Bar

Mar 23, 2006

Hi,

I created my own menu bar in one MS Access file, let's say db1.mdb.

Can I import it to another database file (let's say db2.mdb)?

Thanks.

View 1 Replies View Related

Lost My Menu Bar

Apr 24, 2006

Greetings,

I have just opened Access and for some reason my menu bar is gone. I have fiddled for a few minutes try to find and restore it - but I am clueless. It is working fine in all other programs.

How do I restore it?

~rbinder

View 2 Replies View Related

Do Not Want ANY Menu Bar In Application

Apr 26, 2006

Hello,

I do not want any menu bar in some application I have made using a switchboard. In the start-up function I unchecked all the checkboxes but some menu functions keep coming back. How can I overrule this?

View 5 Replies View Related

Menu Struture!

Apr 13, 2007

I am about to create the menu (navigation) structure for my system but wanted it to be fancy. Anyone got any suggestions or GOOD websites that have different menu types. any help/suggestion would be appreciate!

View 1 Replies View Related

Menu Problem

Apr 25, 2007

Ok i admit i think ive done a really stupid thing here.

In my database on the start-up menu (tools > start up) i have disabled all the menus as well as menu bars and short cut menu bar and toolbars.

However now i need to change information about the start up...

How would i go about this?

Much Appreciated

Ben

View 1 Replies View Related

Startup Menu

May 21, 2007

I craeted a startup menu and unchecked all the backend functions - now I cant getinto design view - what should I do?

View 14 Replies View Related

How Do You Reset The Menu Bar?

Aug 10, 2007

I was in the startup options and unchecked a couple of toolbar boxe and now I dont have a full menu any more.

Please help

View 6 Replies View Related

Database Menu

Aug 22, 2007

I've recently noticed that I cannot get back my main table screen. I'm stuck in the forms..Possibly because of the settings.. I'm not sure.


Is there any easy way to get back to get back my main screen?

E.g. http://img518.imageshack.us/img518/1470/mainscreenoh7.jpg

View 4 Replies View Related







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