visible/disible of picture in run_time
C / C++ / MFC
3
Posts
2
Posters
0
Views
1
Watching
-
How can I to change a static picture(bitmap) from disible to visible and from visible to disible in the code(wich metod?) ??? Please help me !!!!!:rose: miri
You just call the ShowWindow method of the corresponding CWnd, with parameter SW_SHOW or SW_HIDE. The CWnd* can be retrieved by GetDlgItem(ID) or you subclass the ctrl with the classwizard. Pseudocode is code to demonstrate a concept, not designed to be run. Like certain Microsoft software.
-
You just call the ShowWindow method of the corresponding CWnd, with parameter SW_SHOW or SW_HIDE. The CWnd* can be retrieved by GetDlgItem(ID) or you subclass the ctrl with the classwizard. Pseudocode is code to demonstrate a concept, not designed to be run. Like certain Microsoft software.