mystery error message

wcrc

Registered User.
Local time
Today, 21:03
Joined
Mar 10, 2003
Messages
27
I get the following error when I try to automatically save my report in .snp format.


"The formats that enable you to output data as a Microsoft Excel, rich-text-format, MS-DOS test, or HTML file are missing from the Windows registry"

This is the command button code:
------
Private Sub Preview_Cal_Cert_Click()
On Error GoTo Err_Preview_Cal_Cert_Click

Dim stDocName As String
DoCmd.Minimize
stDocName = "Form_Cal_Certificate"
DoCmd.OpenReport stDocName, acPreview

DoCmd.OutputTo _
acOutputReport, , acFormatSNP, _
"T:\Calibration Lab\Calibration Certs\2003 Certs\" & "Cert " & ReportNumberName.Value & ".snp"

Exit_Preview_Cal_Cert_Click:
Exit Sub

Err_Preview_Cal_Cert_Click:
MsgBox Err.Description
Resume Exit_Preview_Cal_Cert_Click

End Sub
--------

Thanks for any help
 
Have you been able to save it in snapshot format from the tools menu as I'm sure you need to install extra files to be able to do this - could be wrong though!
 
I presently have snapshot viewer 9.0 on top of the fact that I am running Access2k.

The weird thing is that there are 4 reports that should save into snapshot format, but 3 of them have this problem. The code is identical except for the file naming tags.

Does this help?
 
Help?

Is there any help for me? I am still lost here.
 

Users who are viewing this thread

Back
Top Bottom