When using an OLE control, I can paste images from the clipboard if I copy it from paint or any progam, but if I use PrintScreen from the keyboard I am not able to paste it, the pasteok always returns false.
Help please
Printable View
When using an OLE control, I can paste images from the clipboard if I copy it from paint or any progam, but if I use PrintScreen from the keyboard I am not able to paste it, the pasteok always returns false.
Help please
I don't know much about OLE controls but...
Clipboard.clear
Clipboard.SetData Image1.Picture
SendMessage RichTextBox1.hwnd, WM_PASTE, 0, 0
This would convert everything from image1 to A Rich Text Box.
Hope this helps.