How to set up security printscreen attached

phatus

Registered User.
Local time
Today, 09:19
Joined
Nov 10, 2010
Messages
100
hi guru's i have a question is it possible that when i open the login form only the log in form appear the tabs or ribbon will not appear here is the screenshot of what i made i disable them in current database option to hide them but its very easy to unhide again because when you click FILE menu theres a privacy option where in you can unhide them again...

untitled-3.jpg



what i want is to hide the one cover by yellow color.. can it be done? how?

untitled-4.jpg
 
You can either disable the standard ribbon and have custom ribbons where you need them (lots of links available on this topic) by editing the USysRibbon table.

Example
Code:
MyHide

<customUI xmlns="http://schemas.microsoft.com/office/2006/01/customui">
<ribbon startFromScratch="true">
   <officeMenu>
        <button idMso="FileOpenDatabase" visible="false" />
         <button idMso="FileNewDatabase" visible="false" />
         <splitButton idMso="FileSaveAsMenuAccess" visible="false" />
     </officeMenu>

</ribbon>
</customUI>



Or have the ap open in Runtime. Runtime does not allow the standard ribbon to open, only custom ribbons.
By default, the Ribbon is not available in runtime mode. This helps prevent users from creating or modifying database objects, and from performing other potentially harmful actions, such as connecting to new data sources or exporting data in ways that you do not intend. You can create a custom Ribbon, and then associate that Ribbon with a form or report. You cannot expose the default Ribbon tabs in runtime mode.
 
@Dairy Farmer
sir how im going to open in runtime? and the code ur pertaining where ill put it? in button in form?
 
i installed a runtime access 2010.. but i cant find it anywhere in my pc... how can i make my database run in runtime? any tutorial on this sir?
 
ok sir ill try sir ill post he result if it work
 
download the ribbon creator and the help, install the creator and follow the help file and i assure you, your application will be totally different.
 
ive done it i just rename .accdb to accdr
 

Users who are viewing this thread

Back
Top Bottom