> on my program with my resource bitmap, when I minimize the program and I pop it back up the Bitmap dissapears. Could anyone help? <

Where is the code that puts the bitmap on the window? If it is in WM_PAINT, then it should repaint the picture right on the client area when you maximize it.

Or, you know what might help, is set the WNDCLASS's style property to CS_HREDRAW | CS_VREDRAW. This tells the window to repaint every time that the height and/or width is changed.

Try this out and tell me if it works.

--Garfield