\\\
Dim p As New System.Diagnostics.ProcessStartInfo()
p.Verb = "print"
p.WindowStyle = ProcessWindowStyle.Hidden
p.FileName = "C:\filename.rtf"
p.UseShellExecute = True
System.Diagnostics.Process.Start(p)
///
Thanks for the responses, but the caveat was WITHOUT Windows Controls.
I don't see a way to call the RichTextBoxPrintCtrl.Print if there is not an
associated control on the page. This is .NET assembly DLL that needs
to perform this action.