CPropertySheet:How can I hide standart buttons or change button text?
-
I have CpopertySheet..WizardMode and i'd like to hide back-button for one CPropertyPage of my sheet...and rename it for another how can I do it?
NoName II wrote:
and i'd like to hide back-button for one CPropertyPage...
Use the
ShowWindow()
method.NoName II wrote:
...and rename it for another
Use the
SetWindowText()
method.
"The largest fire starts but with the smallest spark." - David Crow
"Judge not by the eye but by the heart." - Native American Proverb
-
NoName II wrote:
and i'd like to hide back-button for one CPropertyPage...
Use the
ShowWindow()
method.NoName II wrote:
...and rename it for another
Use the
SetWindowText()
method.
"The largest fire starts but with the smallest spark." - David Crow
"Judge not by the eye but by the heart." - Native American Proverb
-
From any of the tabs, use:
GetParent()->GetDlgItem(IDOK)->ShowWindow(SW_HIDE);
"The largest fire starts but with the smallest spark." - David Crow
"Judge not by the eye but by the heart." - Native American Proverb