property sheet
C / C++ / MFC
3
Posts
2
Posters
0
Views
1
Watching
-
how to remove default OK CANCEL APPLY HELP button from bottom of property sheet and our oun button please mail rahul
-
Hi, You can't remove those buttons, but can hide. To hide back button use the below code.
CWnd* pWnd = GetDlgItem(ID_WIZBACK); if(pWnd) { pWnd->ShowWindow(SW_HIDE); }
Adios, Cool Ju :cool: Dream Ur Destiny