Enabling right-click in Access Runtime? (1 Viewer)

NewShoes

Registered User.
Local time
Yesterday, 23:47
Joined
Aug 1, 2009
Messages
223
Hi all,

As per title really. I have a database that takes a while to open on some peoples computers. I had the idea of opening it in Access Runtime to see if it speeds things up. I just tried and it is a lot quicker however, rightclick is disabled.

The key things I require are...

1) Being able to right click and copy/paste in fields (on forms). I know you can use ctrl c and v but some users will not know this.

2) Is there a way to set a button on a report to go straight to print preview? And similarly, a button that will let me export to PDF?

I'm using Access 2007.

Any help would be great!

-NS
 
Last edited:

vbaInet

AWF VIP
Local time
Today, 07:47
Joined
Jan 22, 2010
Messages
26,374
It's best to ask one thing first and move on to the next ;)

1) Being able to right click and copy/paste in fields (on forms). I know you can use ctrl c and v but some users will not know this.
On the ribbon there is a copy and paste button on the CLIPBOARD tab.

2) Is there a way to set a button on a report to go straight to print preview?
Investigate this approach, here's the code:
Code:
Docmd.openreport "Name_Of_Report", acViewPreview
... And similarly, a button that will let me export to PDF?
Here's how:
Code:
DoCmd.OutputTo acOutputReport, "Name_Of_Report", acFormatPDF, "Full_Path_To_File"
To learn more about this search the help files (hit the F1 key) for the term "OutputTo"
 

NewShoes

Registered User.
Local time
Yesterday, 23:47
Joined
Aug 1, 2009
Messages
223
On the ribbon there is a copy and paste button on the CLIPBOARD tab.

Thanks for your reply vbaInet! I'm not sure I'm looking in the right place but there are no ribbons/tabs in Access Runtime?

Thanks,
-NS
 

vbaInet

AWF VIP
Local time
Today, 07:47
Joined
Jan 22, 2010
Messages
26,374
Hmm... it may be hidden. Right-click at the top and untick the Minimize the Ribbon menu.

Have a look at the attached image.
 

Attachments

  • ShowRibbon.jpg
    ShowRibbon.jpg
    14.7 KB · Views: 898

NewShoes

Registered User.
Local time
Yesterday, 23:47
Joined
Aug 1, 2009
Messages
223
Hmm... it may be hidden. Right-click at the top and untick the Minimize the Ribbon menu.

Have a look at the attached image.

Very strange, I right clicked as suggested and I could see the menu but it was greyed out, I cant select anything.

-NS
 

vbaInet

AWF VIP
Local time
Today, 07:47
Joined
Jan 22, 2010
Messages
26,374
In the accdb version of your database, what are the Access Options set as. (Access Options under the Office button, then click CURRENT DATABSE).

In particular the options in the attached image.
 

Attachments

  • Ribbon Options.jpg
    Ribbon Options.jpg
    10.4 KB · Views: 952

NewShoes

Registered User.
Local time
Yesterday, 23:47
Joined
Aug 1, 2009
Messages
223
Just checked and it's the same as your screenshot.
 

vbaInet

AWF VIP
Local time
Today, 07:47
Joined
Jan 22, 2010
Messages
26,374
I'm not entirely sure but I think with the runtime version of Access 2007 you must create a ribbon and include it in your db. From that screenshot you set the default ribbon to the ribbon you created. Since you're using the built-in buttons all you do is include the right mso's in the ribbon xml file. Here are some good links on how to create the ribbon:

http://msdn.microsoft.com/en-us/library/aa338202.aspx
http://www.accessribbon.de/en/index.php?Welcome

If you're having difficulty just post back.
 

Users who are viewing this thread

Top Bottom