My issue is with this code below, i always get an exception saying there is no image in clipboard although i know there is, thanks in advance.
Try
If My.Computer.Clipboard.ContainsImage() Then
Dim ClipImage As System.Drawing.Image
ClipImage = My.Computer.Clipboard.GetImage
Me.BackgroundImage = ClipImage
Else
MsgBox("No Images in ClipBoard")
End If
Catch ex As Exception
MsgBox(ex.Message)
End Try
P.Clegg