Click here to Skip to main content
15,921,174 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Windows Error Message Handler Pin
Cedric Moonen22-Aug-05 3:11
Cedric Moonen22-Aug-05 3:11 
GeneralRe: Windows Error Message Handler Pin
nripun22-Aug-05 3:20
nripun22-Aug-05 3:20 
GeneralRe: Windows Error Message Handler Pin
Blake Miller22-Aug-05 5:58
Blake Miller22-Aug-05 5:58 
GeneralLoad application as view Pin
Geert van Horrik22-Aug-05 2:41
Geert van Horrik22-Aug-05 2:41 
GeneralRe: Load application as view Pin
Chris Losinger22-Aug-05 4:12
professionalChris Losinger22-Aug-05 4:12 
GeneralRe: Load application as view Pin
Geert van Horrik22-Aug-05 4:47
Geert van Horrik22-Aug-05 4:47 
Generalsubclass all Pin
johny_d22-Aug-05 2:33
johny_d22-Aug-05 2:33 
GeneralRe: subclass all Pin
Blake Miller22-Aug-05 6:29
Blake Miller22-Aug-05 6:29 
The subclassing of a window can occur per window instance or for the entire class, meaning for the entire process.

So, if you want to subclass all windows for a single dialog, you need to subclass each instance of a child control window separately. You replace the window procedure for the window's instance. -> SetWindowLong(hWnd, GWL_WNDPROC, ... );

If you want all child windows to be modified for the entire application, then you can subclass the window procedure globally by replacing the window class's window procedure with your own code. -> SetClassLongPtr(hWnd, GCLP_WNDPROC, ... );


Questiongraying/ungrayin not working? Pin
sayup22-Aug-05 1:42
sayup22-Aug-05 1:42 
AnswerRe: graying/ungrayin not working? Pin
Rage22-Aug-05 1:45
professionalRage22-Aug-05 1:45 
GeneralRe: graying/ungrayin not working? Pin
sayup22-Aug-05 3:59
sayup22-Aug-05 3:59 
GeneralRe: graying/ungrayin not working? Pin
Rage22-Aug-05 5:58
professionalRage22-Aug-05 5:58 
GeneralRe: graying/ungrayin not working? Pin
Bob Ciora22-Aug-05 6:53
Bob Ciora22-Aug-05 6:53 
GeneralProblem with Coordinates.... Pin
Ravi Sankar S22-Aug-05 0:36
Ravi Sankar S22-Aug-05 0:36 
GeneralRe: Problem with Coordinates.... Pin
ThatsAlok22-Aug-05 1:00
ThatsAlok22-Aug-05 1:00 
GeneralRe: Problem with Coordinates.... Pin
PravinSingh22-Aug-05 3:21
PravinSingh22-Aug-05 3:21 
GeneralCOCreateInstance() call failed Pin
Prasannajit Dash22-Aug-05 0:14
Prasannajit Dash22-Aug-05 0:14 
GeneralRe: COCreateInstance() call failed Pin
toxcct22-Aug-05 0:24
toxcct22-Aug-05 0:24 
GeneralRe: COCreateInstance() call failed Pin
dharani22-Aug-05 0:25
dharani22-Aug-05 0:25 
GeneralRe: COCreateInstance() call failed Pin
MailtoGops22-Aug-05 19:08
MailtoGops22-Aug-05 19:08 
GeneralCobList Error deleting last element !!!- HELP ME Pin
dharani22-Aug-05 0:08
dharani22-Aug-05 0:08 
GeneralRe: CobList Error deleting last element !!!- HELP ME Pin
Jack Puppy22-Aug-05 0:57
Jack Puppy22-Aug-05 0:57 
GeneralRe: CobList Error deleting last element !!!- HELP ME Pin
dharani22-Aug-05 1:49
dharani22-Aug-05 1:49 
Generalreading a data file n a specific format Pin
a_david12321-Aug-05 23:41
a_david12321-Aug-05 23:41 
GeneralRe: reading a data file n a specific format Pin
toxcct22-Aug-05 0:04
toxcct22-Aug-05 0:04 

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.