Property Sheet Wizard
-
hi all, I have created a property sheet wizard using the below procedures: Projects >> Add to Project >> Components & Controls Select the Directory Visual C++ Components Select the Property Sheet Component Click the Insert Button. Problem is that wizard is displaying a "help" button which i want to make invisible.Can anyone kindly tell me how to make the help button invisible.
-
hi all, I have created a property sheet wizard using the below procedures: Projects >> Add to Project >> Components & Controls Select the Directory Visual C++ Components Select the Property Sheet Component Click the Insert Button. Problem is that wizard is displaying a "help" button which i want to make invisible.Can anyone kindly tell me how to make the help button invisible.
-
befor u call the AddPage() funtion, do as below m_Page1.m_psp.dwFlags &= ~PSP_HASHELP; AddPage(&m_Page1);
nave
Hi, I have done that then also it is displaying HELP button.
-
Hi, I have done that then also it is displaying HELP button.
-
well in that case, on the OnInitDialog of the CPropertySheet derived class, call the following code CWnd *p = GetDlgItem( IDHELP ); if( p != 0 ) { p->ShowWindow( SW_HIDE ); }
nave
hi, Thanks very much.It worked.