This code works as expected:
CPropertyPage myPage(IDD_PROPPAGE_SMALL, IDS_STRING_CAPTION);
text.Format(_T("Property page title:\t%s"), myPage.GetPSP().pszTitle);
AfxMessageBox(text);
where IDD_PROPPAGE_SMALL - property page dialog template, IDS_STRING_CAPTION - string resource with the text "My Property page Title" Messagebox shows the text "My Property page Title". :cool: