I didnt expect to post about this. I didnt know xp and 98 were sooooo different. This should do the trick:
Clipboard.GetDataObject().GetFormats(); returns an array that has Bitmap in there many times meaning that it can be converted to a Bitmap or Image.
I even used a try catch to force the Bitmap creation but it was caught.
How do I get Bitmaps from the clipboard in win98?
C#:
if(Clipboard.GetDataObject().GetDataPresent(typeof(Bitmap)))
{
Bitmap B= (Bitmap)Clipboard.GetDataObject().GetData(typeof(Bitmap));
}
I even used a try catch to force the Bitmap creation but it was caught.
How do I get Bitmaps from the clipboard in win98?