I have a very strange problem with "SendMessag e". I have a code which places
a graphic picture inside a richtextbox, the code is simple, like this (form name is "Editor"):

Code:
   Editor.glo.Picture = LoadPicture("somepic.bmp")
   Clipboard.Clear
   Clipboard.SetData Editor.glo.Picture
   gResult = SendMessage(Editor.RichTextBox1.hwnd, WM_PASTE, 1, 0)

The...