I've got a large string which i'm trying to print (ie, send to the printer) called printstr.

On Error GoTo err1
CommonDialog1.PrinterDefault = True
CommonDialog1.CancelError = True
CommonDialog1.ShowPrinter

Printer.NewPage
Printer.Font = "Arial"
Printer.ColorMode = 1

Print printstr

Printer.EndDoc
Printer.KillDoc

This just send blank pages out the printer... does anyone have a suggestion?

Is there a function to call the system print command on a text file?

Cheers
Mafro