how can i read a file to StdPicture?
and draw it on memory HDC?
Public Sub LoadImage(strPath As String)
Dim myPic As New StdPicture
Set myPic = LoadPicture(strPath)
NewImage myPic.Width, myPic.Height
BitBlt MemoryHDC, 0, 0, Width, Height, myPic.Handle, 0, 0, SRCCOPY 'i get only a black background color
End Sub