When i use code as below, i can save image to Clipboard.
string file = @"C:\Temp\aaa.jpg";
Clipboard.SetImage(Image.FromFile(file));
But when i try to Paste(ctrl+v) to another application, such as textbox on IBM SameTime, then will fail, and i try to paste on excel/word work area, it can paste successfully.
The weird thing is, when i use Windows Paint draw someting and right click Copy, it can paste to all application successfully.
I would like to know that is textbox not support Bitmap format?
Please advince, thanks.