2 Remaining Issues (maybe 3)

gary.newport

Registered User.
Local time
Today, 23:25
Joined
Oct 14, 2009
Messages
79
I am finishing the last steps to a system and have I have two issues with this:


  1. The splash screen has the rounded edge at the top that 2007 gives to forms when border style is set to None. Is there any way of either rounding the bottom of a form or squaring off the top?
  2. I have switched off most menus but there is still the clipboard, font, etc menu. How can I disable this and restrict the system to only the forms, etc I have created?
I do have a third issue but a minor one. I have a label on the splash screen and a table with a single field and, in fact, a single record (this is essential for an update system I have installed). I would like the label to show the data in that single field but cannot think of the command needed to do so.

Thanks for any help given. :)
 
  1. The splash screen has the rounded edge at the top that 2007 gives to forms when border style is set to None. Is there any way of either rounding the bottom of a form or squaring off the top?
Not sure if it gives rounded edges, hmm..., but if it does you could use a box control and expand it to the full area of the form, set the border thickness by 2 or something.

2. I have switched off most menus but there is still the clipboard, font, etc menu. How can I disable this and restrict the system to only the forms, etc I have created?
You wouldn't normally hide menus in Access 2007, you hide controls, groups or tabs. You are referring to the Ribbon aren't you?

I do have a third issue but a minor one. I have a label on the splash screen and a table with a single field and, in fact, a single record (this is essential for an update system I have installed). I would like the label to show the data in that single field but cannot think of the command needed to do so.
DLookup() function would do. Look it up.
 
Not sure if it gives rounded edges, hmm..., but if it does you could use a box control and expand it to the full area of the form, set the border thickness by 2 or something.

No, my eyes are going wonky. Of course it is rounding the top! :rolleyes:

The box suggestion works aside from the top left corner but actually gives a nice look so I am staying with that one. :)

You wouldn't normally hide menus in Access 2007, you hide controls, groups or tabs. You are referring to the Ribbon aren't you?

Yes, I mean the ribbon. Sorry if the wording was incorrect. Now it is corrected; any ideas?

DLookup() function would do. Look it up.

I vill do, mein fuhrer! :D
 
So this would depend on if you want to remove the ribbon completely? Customising the ribbon is another different kettle of fish, it's nothing like pre 2007 versions.

Yes, I want to remove the whole ribbon. I want to reduce the options to the forms, etc that I have created when the system is opened normally.
 
Thanks my friend but already sorted with the following:

Code:
DoCmd.ShowToolbar "Ribbon", acToolbarNo
 
Have you tested that on pop-up forms, reports and dialog forms?
 
Yep, I have tested the entire system and it works fine. There are no reports on this particular system but I may well use the same approach for the Admin system so should be able to confirm sometime later on.
 
I'm skeptical about that approach with regards ribbons. But if you say it works then great. I would be inclined to also test it on ACCDEs too.

Good luck :)
 

Users who are viewing this thread

Back
Top Bottom