A Problem on Bitmap
-
Hi guys I am facing a problem on how to make the Bitmap Added without disappearing when i minimize or maximize screen or just moving the program. My Bitmap graphics always disappear, i do not know how to use UpdateWindow Function to prevent this from happening can i have any demo projects that can guide me through this problem Thank You
-
Hi guys I am facing a problem on how to make the Bitmap Added without disappearing when i minimize or maximize screen or just moving the program. My Bitmap graphics always disappear, i do not know how to use UpdateWindow Function to prevent this from happening can i have any demo projects that can guide me through this problem Thank You
Hi, Did you tried to redraw the bitmap window? In your OnPaint() function try : m_BitmapWindow.RedrawWindow(); Regards, Eli
-
Hi, Did you tried to redraw the bitmap window? In your OnPaint() function try : m_BitmapWindow.RedrawWindow(); Regards, Eli
-
Hi, Did you tried to redraw the bitmap window? In your OnPaint() function try : m_BitmapWindow.RedrawWindow(); Regards, Eli
-
I did not use OnPaint Function to create the bitmaps I created a ShowBitmap(int x, int y, int type) function and some parameters for displaying the Bitmap, so what kind of other Functions would you recommend for me? Can UpdateWindows() be use?