I have a Window (win32 API) Application in visual c++. I am not using MFC. I have to add a picutre box to my application and Change the image of this picture box periodically. Can any one help me out in achieving the above task? Thanks in advance.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
This is quite a complex task to post full code here, but I will try to give a few guidelines on how to do it: First method is to load the image and paint it
Should work. Now, the second way of doing it is to create a static control, with type being SS_BITMAP and set its image as:
where hwnd is the handle of your static control. |
|||
|
|