Originally Posted by
joker1969
Hi,
Thank you so much for reply. My picture control name is IDC_PICTURE_AREA.
I just read about StrechBlt() in documentation. It is clear to me that 8 of the parameters are coordinates of source and coordinates of destination. I am kind of lost on how would I get
Handle to the destination and to the source. Would the handle of my source be this....
HBITMAP phBitmap = (HBITMAP)LoadImage( NULL,myString,
IMAGE_BITMAP, 0, 0,LR_CREATEDIBSECTION | LR_LOADFROMFILE);
Because phBitmap point to my image in memory. How would I get the handle to my picture control since picture control is my destination.
Any help would be appreciated.