Print clipboard Contens

  • Thread starter Thread starter vqthomf
  • Start date Start date
V

vqthomf

I have a tif image that I copy and load into a form to view, I would like to
print it how can I send this copied info to the printer?.
Any help will be much appreciated.
Regards
Charles
 
I don't know if this snippet from Chip Pearson is what you need or not.

Set a reference to the MSForms 2.0 library, and use code like the
following:


Dim DObj As MSForms.DataObject
Dim S As String
Set DObj = New MSForms.DataObject
DObj.GetFromClipboard
S = DObj.GetText
Debug.Print S
 
Back
Top