Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

DoCmd.TransferText to SNP format 1

Status
Not open for further replies.

startup

Technical User
May 22, 2002
42
US
Anyone know a way to export a report to the Snapshot Viewer (SNP) format with visual basic? All the transfer formats I can find in Microsoft help for the DoCmd.TransferText commands are:

acExportDelim
acExportFixed
acExportHTML
acExportMerge
acImportDelim (default)
acImportFixed
acImportHTML
acLinkDelim
acLinkFixed
acLinkHTML
 
I would use
DoCmd.OutputTo objecttype[, objectname][, outputformat][, outputfile][, autostart][, templatefile]

and then you can use acFormatSNP as the outputformat.

example: DoCmd.OutputTo acOutputReport, "rptSales", acFormatSNP, "OutputFile"
Kelly
 
This is perfect, just what I needed. Thanks

Rico
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top