Access 2007

hunter_vs

Registered User.
Local time
, 19:29
Joined
Jan 15, 2009
Messages
11
Hi all.
I have created a system in access 2007..., however, i need to demonstrate it....Can some one please tell me how i can get rid of the tool bars etc on the side of the screen and on the top of the screen... so all the user sees is the system.
I thought if i put it on CD, it would work, but by putting it on CD, makes it read only.... and i need to add records to the database.
please help
thanks.
 
If you want to demonstrate it on machines without access then download the Packakging wizard and Access 2007 Runtime from MSN.

http://www.microsoft.com/downloads/...d9-9dc6-4b38-9fa6-2c745a175aed&displaylang=en (Runtime)

http://www.microsoft.com/downloads/...58-ECE4-4BEE-A844-F81856DCEB67&displaylang=en (Devleloper Extensions)

http://blogs.msdn.com/access/archiv...ime-and-developer-extension-will-be-free.aspx (MSN Blog Dicussion)

Follow those links for information regarding downloads and use OR you could make the database an MDE to protect against design changes then jsut disable menus on start up...

Good luck John
 
If you want to demonstrate it on machines without access then download the Packakging wizard and Access 2007 Runtime from MSN.

http://www.microsoft.com/downloads/...d9-9dc6-4b38-9fa6-2c745a175aed&displaylang=en (Runtime)

http://www.microsoft.com/downloads/...58-ECE4-4BEE-A844-F81856DCEB67&displaylang=en (Devleloper Extensions)

http://blogs.msdn.com/access/archiv...ime-and-developer-extension-will-be-free.aspx (MSN Blog Dicussion)

Follow those links for information regarding downloads and use OR you could make the database an MDE to protect against design changes then jsut disable menus on start up...

Good luck John

hi, the system will be demonstrated on a machine that has access 07... but i need to disable the menus on start up... can you please tell me how i can do that!.
thanks ,
 
If you set the startup form to the main screen then you shuold not see the windows on the side.

also I have used

Code:
DB_DAO = DBEngine.Version
DB_JET = CurrentDb().Version
db_version = Application.SysCmd(acSysCmdAccessVer)
'
If db_version = 12# Then
If Me.Application.CommandBars.Item("Ribbon").Height = 150 Then
SendKeys "^{F1}", False
End If
Else
End If

To hide the top ribbon. OR you can just right click it and select Hide
 

Users who are viewing this thread

Back
Top Bottom