Mar 26, 2002 #1 Guest_imported New member Joined Jan 1, 1970 Messages 0 Can someone please explain to me how i can get a bitmap inside of my application to disappear with the push of a button? Thanks!:-D
Can someone please explain to me how i can get a bitmap inside of my application to disappear with the push of a button? Thanks!:-D
Mar 26, 2002 #2 BobbyB Programmer Joined Feb 19, 2002 Messages 44 Location CA CBitmap* bmp = (CBitmap*)GetDlgItem(IDC_YOURBITMAP); bmp->ShowWindow(SW_HIDE); // SW_SHOW to reverse Hope this help Upvote 0 Downvote
CBitmap* bmp = (CBitmap*)GetDlgItem(IDC_YOURBITMAP); bmp->ShowWindow(SW_HIDE); // SW_SHOW to reverse Hope this help