Click here to Skip to main content
15,919,479 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralVC 6.0 msdev.exe System Path Pin
Makover27-Feb-03 13:20
Makover27-Feb-03 13:20 
GeneralRe: VC 6.0 msdev.exe System Path Pin
J Patel27-Feb-03 13:33
J Patel27-Feb-03 13:33 
GeneralRe: VC 6.0 msdev.exe System Path Pin
Makover27-Feb-03 13:41
Makover27-Feb-03 13:41 
GeneralRe: VC 6.0 msdev.exe System Path Pin
Nish Nishant27-Feb-03 16:56
sitebuilderNish Nishant27-Feb-03 16:56 
GeneralRe: VC 6.0 msdev.exe System Path Pin
Michael Dunn27-Feb-03 18:34
sitebuilderMichael Dunn27-Feb-03 18:34 
GeneralRe: VC 6.0 msdev.exe System Path Pin
Nish Nishant27-Feb-03 16:55
sitebuilderNish Nishant27-Feb-03 16:55 
GeneralRe: VC 6.0 msdev.exe System Path Pin
Makover28-Feb-03 0:14
Makover28-Feb-03 0:14 
QuestionHow do I traget the Every one permission in Windows using VC 6.0 or 7.0 Pin
cgkiller27-Feb-03 12:41
cgkiller27-Feb-03 12:41 
AnswerRe: How do I traget the Every one permission in Windows using VC 6.0 or 7.0 Pin
Alois Kraus27-Feb-03 23:24
Alois Kraus27-Feb-03 23:24 
GeneralRe: How do I traget the Every one permission in Windows using VC 6.0 or 7.0 Pin
cgkiller28-Feb-03 2:18
cgkiller28-Feb-03 2:18 
QuestionWhere is SourceSafe 6.0 in .NET located?? Pin
IrishSonic27-Feb-03 12:19
IrishSonic27-Feb-03 12:19 
AnswerRe: Where is SourceSafe 6.0 in .NET located?? Pin
Gary R. Wheeler1-Mar-03 2:30
Gary R. Wheeler1-Mar-03 2:30 
GeneralPaint problem. Pin
Martin Marvinski27-Feb-03 11:41
Martin Marvinski27-Feb-03 11:41 
GeneralRe: Paint problem. Pin
Taka Muraoka27-Feb-03 12:31
Taka Muraoka27-Feb-03 12:31 
GeneralRe: Paint problem. Pin
Nish Nishant27-Feb-03 17:05
sitebuilderNish Nishant27-Feb-03 17:05 
Questionceil and floor? Pin
Anonymous27-Feb-03 11:22
Anonymous27-Feb-03 11:22 
AnswerRe: ceil and floor? Pin
Chris Losinger27-Feb-03 11:24
professionalChris Losinger27-Feb-03 11:24 
AnswerRe: ceil and floor? Pin
Gary Kirkham27-Feb-03 11:24
Gary Kirkham27-Feb-03 11:24 
GeneralRe: ceil and floor? Pin
Gary Kirkham27-Feb-03 11:27
Gary Kirkham27-Feb-03 11:27 
GeneralRe: ceil and floor? Pin
Jörgen Sigvardsson2-Mar-03 13:30
Jörgen Sigvardsson2-Mar-03 13:30 
Generalstdafx.h question Pin
Anonymous27-Feb-03 11:09
Anonymous27-Feb-03 11:09 
GeneralRe: stdafx.h question Pin
Jim A. Johnson27-Feb-03 11:13
Jim A. Johnson27-Feb-03 11:13 
GeneralRe: stdafx.h question Pin
Anonymous27-Feb-03 11:16
Anonymous27-Feb-03 11:16 
GeneralI feel inadequate ... CButton question. Pin
Maximilien27-Feb-03 10:15
Maximilien27-Feb-03 10:15 
GeneralRe: I feel inadequate ... CButton question. Pin
Dave Bryant27-Feb-03 10:20
Dave Bryant27-Feb-03 10:20 
You don't get the WM_CREATE message because windows creates a normal button first, and then subclasses it in the first call to the DoDataExchange method. When your class is attached to the button, the button has already been created.

You may be able to do want you want in the PreSubclassWindow() virtual method - this is called after the HWND is attached to your button, but before the window procedure has been replaced.

Dave

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.