Click here to Skip to main content
15,912,400 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralLook at this horrible casting Pin
NicholasCougar7-May-02 15:36
NicholasCougar7-May-02 15:36 
GeneralRe: Look at this horrible casting Pin
Tim Smith7-May-02 15:37
Tim Smith7-May-02 15:37 
GeneralRe: Look at this horrible casting Pin
NicholasCougar7-May-02 16:06
NicholasCougar7-May-02 16:06 
GeneralRe: Look at this horrible casting Pin
Mike Nordell9-May-02 21:40
Mike Nordell9-May-02 21:40 
Questionhow do I: register a dll with c++ code instead of regsvr32? Pin
7-May-02 14:36
suss7-May-02 14:36 
AnswerRe: how do I: register a dll with c++ code instead of regsvr32? Pin
Paul M Watt7-May-02 14:48
mentorPaul M Watt7-May-02 14:48 
GeneralQuestion about CPropertySheet Pin
Marc Richarme7-May-02 14:27
Marc Richarme7-May-02 14:27 
GeneralRe: Question about CPropertySheet Pin
Shog97-May-02 14:48
sitebuilderShog97-May-02 14:48 
A curious problem indeed! The problem is, you are not telling the property sheet it is to be used as a control. You can do this by creating it with the WS_EX_CONTROLPARENT style. So this line:
m_wndSheet.Create(this,WS_VISIBLE|WS_CHILD);

Needs to be changed to:
m_wndSheet.Create(this,WS_VISIBLE|WS_CHILD,WS_EX_CONTROLPARENT);


--------

I don't think that I'm a sell-out but I do "Enjoy Coke!"...

-- Bloodhound Gang, The Inevitable Return Of The Great White Dope


GeneralRe: Question about CPropertySheet Pin
Tom Archer7-May-02 22:17
Tom Archer7-May-02 22:17 
GeneralRe: Question about CPropertySheet Pin
Shog98-May-02 3:27
sitebuilderShog98-May-02 3:27 
GeneralRe: Question about CPropertySheet Pin
Tom Archer8-May-02 3:33
Tom Archer8-May-02 3:33 
GeneralRe: Question about CPropertySheet Pin
Marc Richarme8-May-02 3:52
Marc Richarme8-May-02 3:52 
GeneralRe: Question about CPropertySheet Pin
Tom Archer8-May-02 4:02
Tom Archer8-May-02 4:02 
GeneralShutdown vs Restart Pin
7-May-02 13:16
suss7-May-02 13:16 
GeneralRe: Shutdown vs Restart Pin
Matt Gullett7-May-02 17:03
Matt Gullett7-May-02 17:03 
QuestionHow do I get a list of NT profiles Pin
CherezZaboro7-May-02 13:05
CherezZaboro7-May-02 13:05 
AnswerRe: How do I get a list of NT profiles Pin
Mike Nordell9-May-02 21:44
Mike Nordell9-May-02 21:44 
GeneralRe: How do I get a list of NT profiles Pin
CherezZaboro10-May-02 4:33
CherezZaboro10-May-02 4:33 
GeneralDelete File Handle Error Pin
Peter Liddle7-May-02 11:36
Peter Liddle7-May-02 11:36 
GeneralRe: Delete File Handle Error Pin
Joaquín M López Muñoz7-May-02 11:52
Joaquín M López Muñoz7-May-02 11:52 
Generalwaiting for a small amount of time Pin
Alex Griffing7-May-02 11:27
Alex Griffing7-May-02 11:27 
GeneralRe: waiting for a small amount of time Pin
Christian Graus7-May-02 11:32
protectorChristian Graus7-May-02 11:32 
GeneralRe: waiting for a small amount of time [slightly corrected] Pin
Joaquín M López Muñoz7-May-02 11:39
Joaquín M López Muñoz7-May-02 11:39 
GeneralVS7 Rant Pin
Todd Smith7-May-02 11:11
Todd Smith7-May-02 11:11 
GeneralRe: VS7 Rant Pin
Tom Archer7-May-02 11:18
Tom Archer7-May-02 11:18 

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.