|
-
August 20th, 1999, 01:37 AM
#2
Re: Wizards
To change the text try this:
CWnd* pWndButton = GetDlgItem( ID_WIZBACK );
pWndButton->SetWindowText("No");
pWndButton = GetDlgItem( ID_WIZNEXT );
pWndButton->SetWindowText("Yes");
To hide Help button do this:
CWnd* pWndButton = GetDlgItem( IDHELP );
pWndButton->ShowWindow( SW_HIDE );
Let me know if this help u
Regards,
Ovidiu
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|