VB Copy and Paste API's
-
I would like to read a jpg file from disk and copy it into the windows copy buffer. Then I would like to paste it from the Windows buffer to a Rich Text Control. Could anybody suggest API's for pasting and coping to the Windows copy buffer? Thanks PMCGAHAN@UCSWORKS.COM
-
I would like to read a jpg file from disk and copy it into the windows copy buffer. Then I would like to paste it from the Windows buffer to a Rich Text Control. Could anybody suggest API's for pasting and coping to the Windows copy buffer? Thanks PMCGAHAN@UCSWORKS.COM
"The Windows copy buffer" better known as Clipboard can be accessed using build-in VB object with the same name. Take a look at Clipboard.SetData and Clipboard.GetData methods. I hope this helps.
-
"The Windows copy buffer" better known as Clipboard can be accessed using build-in VB object with the same name. Take a look at Clipboard.SetData and Clipboard.GetData methods. I hope this helps.