Best method to get Access 2013 (1 Viewer)

GBalcom

Much to learn!
Local time
Today, 04:02
Joined
Jun 7, 2012
Messages
459
Long story short, I think I'll need 1 new license of Access 2013

Docmd.OutputTo does not work in access Runtime, and I need VBA code to be able to output a report and email it. :banghead:

What is the best way to purchase old licenses? I develop in 2013, and don't want to go higher at the moment.
 

arnelgp

..forever waiting... waiting for jellybean!
Local time
Today, 19:02
Joined
May 7, 2009
Messages
19,226
Access Runtime does not perform as Full installed access.
therefore, some of its functionality is reduced.

you can Emulate runtime using, and test your OutputTo:

msAccessPath\MSAccess.Exe dbname.accdb /runtime
 
Last edited:

Minty

AWF VIP
Local time
Today, 12:02
Joined
Jul 26, 2013
Messages
10,367
No idea on how legit they are but : https://www.softwaregiants.com/en_u...YXhY0GuXy-ENnuJ8WlWS7LxOJrA47sREaAhAmEALw_wcB

And are you sure about DoCmd.OutputTo not working in Runtime?
I'm certain I used that method to generate PDFs that are then emailed in Access.

Edit: I've just checked a legacy app and I know that definitely worked on RT;
Code:
  DoCmd.OutputTo acOutputReport, "repContract_Schedule_master", acFormatPDF, strSavePath & strContractDocId, , , , acExportQualityPrint

What error are you getting?
 
Last edited:

theDBguy

I’m here to help
Staff member
Local time
Today, 04:02
Joined
Oct 29, 2018
Messages
21,447
Hi. Are you looking for license only and not the software, right? I wonder if licenses for newer versions can apply to older versions. You might ask MS about it. Also, I don't understand why OutputTo doesn't work with runtime. What version of runtime are you using? You might try using a higher version of runtime just to test.
 

theDBguy

I’m here to help
Staff member
Local time
Today, 04:02
Joined
Oct 29, 2018
Messages
21,447

Users who are viewing this thread

Top Bottom