Exporting Snapview (.snp) reports from Access 2002 Runtime

H

Henri Basson

I develop Access applications which are usually run using
the runtime version of Access 2002 on my clients'
computers. The runtime version, however, does not seem to
allow the generation of Snapshot Viewer (snp) files of the
reports. Is this an intentional design feature, or am I
missing something in setup/references?

I would appreciate assistance with this one.

Henri Basson
 
R

Rick Brandt

Henri Basson said:
I develop Access applications which are usually run using
the runtime version of Access 2002 on my clients'
computers. The runtime version, however, does not seem to
allow the generation of Snapshot Viewer (snp) files of the
reports. Is this an intentional design feature, or am I
missing something in setup/references?

I would appreciate assistance with this one.

I have many Access 97 Runtime Apps that can do this. I would be surprised if they
took that ability out in 2002. Are you doing this in code or from a menu bar?
 
D

david epsom dot com dot au

Have you installed the snapshot viewer?
Are you using Access security?

(david)
 
R

Rick Brandt

david epsom dot com dot au said:
Have you installed the snapshot viewer?
Are you using Access security?

The Snapshot *Viewer* is not required to *create* SNPs. Only to view them.
 
H

Henri Basson

-----Original Message-----


I have many Access 97 Runtime Apps that can do this. I would be surprised if they
took that ability out in 2002. Are you doing this in code or from a menu bar?


.
Thanks for your response Rick.
I use a custom toolbar with code:
DoCmd.OutputTo acOutputReport,,"Snapshot Format", <path>
It works fine when I run the full version of Access 2002.
 
D

david epsom dot com dot au

The Snapshot *Viewer* is not required to *create* SNPs. Only to

Thank you for that information :)

It does not answer the questions, which are relevant :)

Have you installed the snapshot viewer?
Are you using Access security?

(david)
 
R

Rick Brandt

Henri Basson said:
I use a custom toolbar with code:
DoCmd.OutputTo acOutputReport,,"Snapshot Format", <path>
It works fine when I run the full version of Access 2002.

I believe they changed the type constant. "Snapshot Format" worked in Access 97.
For 2002 I believe it is "acFormatSNP". Perhaps the full version is more backwards
compatible than the Runtime.
 
D

david epsom dot com dot au

In A2K the value of acFormatSNP was <Snapshot Format (*.snp)>

(david)
 
H

Henri Basson

-----Original Message-----
2002.

I believe they changed the type constant. "Snapshot Format" worked in Access 97.
For 2002 I believe it is "acFormatSNP". Perhaps the full version is more backwards
compatible than the Runtime.


.
I've already tried that constant without success. Thanks
again for the suggestion. If I crack this one, I will let
you know.
 
D

david epsom dot com dot au

Have you installed the snapshot viewer?
Are you using Access Security?
Does it work on your development machine with the /runtime switch?

(david)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top