Hi,
The program draws an image directly to the Form and not to a picturebox.
hDC = User.GetDC(Me.Handle)
EnableOpenGL(hDC)
'draw code follows ...
How can I copy this image drawn to the form to the clipboard?
'Clipboard.SetDataObject(Picturebox1.image) If this was drawn to a picbox
' How do I convert the above command??
'???
Is this possible? Or do I have to use a picturebox??? Although I know that a picturebox would simplify my problem, there is another issue with regards of using a picturebox, therefore, if possible I would like to avoid using it.
However, if it is impossible!! please mention it so I won't spend any more time trying. thanks.