Instead a dialog I want to appear 3 buttons
C / C++ / MFC
4
Posts
2
Posters
0
Views
1
Watching
-
When I click on a button I want to appear 3 buttons instead a dialog.How can I do this?Thanks.
One way is you create 3 that buttons in resource editor. In OnInitDialog, you set three button to be invisible. When click on a button, you set 3 button to visible mode. Just call: ShowWindow Another way is to create buttons when click by CWnd::Create function
-
One way is you create 3 that buttons in resource editor. In OnInitDialog, you set three button to be invisible. When click on a button, you set 3 button to visible mode. Just call: ShowWindow Another way is to create buttons when click by CWnd::Create function
Idon't want a dialog, only 3 buutons.No dialog.
-
Idon't want a dialog, only 3 buutons.No dialog.