Open In Snap Shot Format?

B

Bob

Can this be altered so as it will open in Snap Shot Format:

Private Sub cmdPrint_Click()
If lstModify.value = "" Or IsNull(lstModify.value) Then
MsgBox "Please Select Invoice.", vbApplicationModal + vbOKOnly +
vbInformation
Exit Sub
End If
DoCmd.OpenReport "rptInvoiceModify", acViewPreview
End Sub

Thanks for any help........Bob
 
J

JK

Bob,

Private Sub cmdPrint_Click()

If lstModify.value = "" Or IsNull(lstModify.value) Then
MsgBox "Please Select Invoice.", _
vbApplicationModal + vbOKOnly _
+ vbInformation
Exit Sub
End If

DoCmd.OutputTo acOutputReport, "rptInvoiceModify", _
"Snapshot Format", "Invoice.snp", True

End Sub
 

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

Similar Threads


Top