i am creating a pdf file from a URL usinr a simple component:
Dim theData() As Byte = theDoc.GetData()
Dim output As New System.IO.MemoryStream(the
Data)
Return (output)
this is working great for use as attachments.
however, i now need to also print the files, id like to keep the same method, (i dont want to save a pdf to then print it) but send the output to print.
is this possible? how?
thanks
scott
Start Free Trial