Click here to Skip to main content
16,015,414 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Excel automation Pin
HENDRIK R6-Mar-03 0:27
HENDRIK R6-Mar-03 0:27 
GeneralRe: Excel automation Pin
Rage6-Mar-03 0:50
professionalRage6-Mar-03 0:50 
GeneralRe: Excel automation Pin
HENDRIK R6-Mar-03 1:17
HENDRIK R6-Mar-03 1:17 
GeneralRe: Excel automation Pin
Rage6-Mar-03 1:29
professionalRage6-Mar-03 1:29 
GeneralRe: Excel automation Pin
HENDRIK R6-Mar-03 1:48
HENDRIK R6-Mar-03 1:48 
QuestionStacked tabs in a property sheet? Pin
Joan M5-Mar-03 20:35
professionalJoan M5-Mar-03 20:35 
AnswerRe: Stacked tabs in a property sheet? Pin
Ted Ferenc5-Mar-03 21:37
Ted Ferenc5-Mar-03 21:37 
GeneralRe: Stacked tabs in a property sheet? Pin
Joan M6-Mar-03 3:50
professionalJoan M6-Mar-03 3:50 
int CPSParametritzacions::OnCreate(LPCREATESTRUCT lpCreateStruct) 
{	
  this->EnableStackedTabs(FALSE);		
  if (CPSAutoRedimensionable::OnCreate(lpCreateStruct) == -1) return -1;
  return 0;
}

int CMyPropertySheet::OnCreate(LPCREATESTRUCT lpCreateStruct)
{
// Set for Scrolling Tabs style
EnableStackedTabs(FALSE);
// Call the base class
if (CPropertySheet::OnCreate(lpCreateStruct) == -1)
return -1;
// TODO: Add your specialized creation code here
return 0;
}


the only differences I see are in bold font... and I don't believe they are significant...

The fact is that this must not be the reason... (it's obvious why), but the other one... My problem is that the CPSAutoRedimensionable class it's a class derived from the base class property sheet and that I don't know why I can't call directly CPropertySheet::OnCreate from my CPSParametritzacions class.

Thank you in advance, and thank you for your interest too.
GeneralClose Port Pin
San5-Mar-03 19:22
San5-Mar-03 19:22 
GeneralRe: Close Port Pin
RobJones6-Mar-03 1:46
RobJones6-Mar-03 1:46 
GeneralResource DLLs / MFC Pin
Jon Sagara5-Mar-03 19:09
Jon Sagara5-Mar-03 19:09 
GeneralRe: Resource DLLs / MFC Pin
Bartosz Bien5-Mar-03 23:57
Bartosz Bien5-Mar-03 23:57 
GeneralRe: Resource DLLs / MFC Pin
Blake Miller7-Mar-03 9:51
Blake Miller7-Mar-03 9:51 
Generaldetecting system shutdown Pin
r i s h a b h s5-Mar-03 17:36
r i s h a b h s5-Mar-03 17:36 
GeneralRe: detecting system shutdown Pin
Michael Dunn5-Mar-03 19:13
sitebuilderMichael Dunn5-Mar-03 19:13 
GeneralRe: detecting system shutdown Pin
r i s h a b h s5-Mar-03 22:49
r i s h a b h s5-Mar-03 22:49 
GeneralCPoint and Popup Menus.. Pin
adonisv5-Mar-03 17:28
adonisv5-Mar-03 17:28 
GeneralRe: CPoint and Popup Menus.. Pin
Dave Bryant5-Mar-03 17:31
Dave Bryant5-Mar-03 17:31 
GeneralRe: CPoint and Popup Menus.. Pin
Ryan Binns5-Mar-03 21:01
Ryan Binns5-Mar-03 21:01 
GeneralRe: CPoint and Popup Menus.. Pin
adonisv6-Mar-03 7:03
adonisv6-Mar-03 7:03 
GeneralIt's still not working! Pin
adonisv6-Mar-03 7:38
adonisv6-Mar-03 7:38 
GeneralRe: It's still not working! Pin
Ryan Binns6-Mar-03 13:00
Ryan Binns6-Mar-03 13:00 
GeneralGot a teeny tiny menu going! Pin
adonisv7-Mar-03 13:22
adonisv7-Mar-03 13:22 
GeneralRe: Got a teeny tiny menu going! Pin
Ryan Binns7-Mar-03 15:39
Ryan Binns7-Mar-03 15:39 
GeneralWhat's the diff between load and insert menu? Pin
adonisv9-Mar-03 6:44
adonisv9-Mar-03 6:44 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.