: can any one help me to convert the bitmap image to convert in Binary file.
: I got the image in clipboard and i can also paste the image in Picture BOX. but i want to store the image in a binary file from the clipboard.
: help me Out......
:
: Thanks..........
:
Try this snippet
Private Sub SaveBMP(ByVal strImage As String)
Picture = Clipboard.GetData(vbCFBitmap)
SavePicture Picture, strImage
End Sub
//MicroDot