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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top