Click here to Skip to main content
15,909,652 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: suclassing button at runtime Pin
CHAIGNEAU27-Oct-03 10:09
CHAIGNEAU27-Oct-03 10:09 
GeneralRe: suclassing button at runtime Pin
David Crow27-Oct-03 9:24
David Crow27-Oct-03 9:24 
GeneralRe: suclassing button at runtime Pin
CHAIGNEAU27-Oct-03 9:53
CHAIGNEAU27-Oct-03 9:53 
GeneralRe: suclassing button at runtime Pin
David Crow27-Oct-03 9:57
David Crow27-Oct-03 9:57 
GeneralRe: suclassing button at runtime Pin
CHAIGNEAU27-Oct-03 10:06
CHAIGNEAU27-Oct-03 10:06 
GeneralRe: suclassing button at runtime Pin
David Crow27-Oct-03 10:16
David Crow27-Oct-03 10:16 
GeneralRe: suclassing button at runtime Pin
CHAIGNEAU27-Oct-03 10:43
CHAIGNEAU27-Oct-03 10:43 
GeneralRe: suclassing button at runtime Pin
alex.barylski27-Oct-03 11:33
alex.barylski27-Oct-03 11:33 
OnInitDialog()
{
  CButton* pChild = GetWindow(GW_CHILD);

  while(::IsWindow(pChild->m_hWnd)){
    CString csClassName;


    ::GetClassName(pChild->GetSafeHwnd(), &csClassName, 6);
    
    if(csClassName=="BUTTON"){
       // Subclass window
    }
    
    pChild = GetWindow(GW_HWNDNEXT);    
  }
}  


This is what I had in mind Smile | :)

I'm drinking triples, seeing double and acting single Cool | :cool:
GeneralRe: suclassing button at runtime Pin
David Crow27-Oct-03 13:00
David Crow27-Oct-03 13:00 
Generaldialog, dialogbar, or toolbar Pin
MJohn1029627-Oct-03 5:36
MJohn1029627-Oct-03 5:36 
Generalembedded mysql server Pin
niklo27-Oct-03 5:17
niklo27-Oct-03 5:17 
GeneralRe: embedded mysql server Pin
alex.barylski27-Oct-03 7:09
alex.barylski27-Oct-03 7:09 
GeneralRe: embedded mysql server Pin
niklo27-Oct-03 20:47
niklo27-Oct-03 20:47 
Generalproblem in file scanning Pin
karteek27-Oct-03 4:07
karteek27-Oct-03 4:07 
GeneralRe: problem in file scanning Pin
David Crow27-Oct-03 4:13
David Crow27-Oct-03 4:13 
GeneralRe: problem in file scanning Pin
karteek27-Oct-03 5:38
karteek27-Oct-03 5:38 
GeneralRe: problem in file scanning Pin
David Crow27-Oct-03 6:15
David Crow27-Oct-03 6:15 
GeneralRe: problem in file scanning Pin
Joe Woodbury27-Oct-03 10:05
professionalJoe Woodbury27-Oct-03 10:05 
GeneralRe: problem in file scanning Pin
valikac27-Oct-03 5:51
valikac27-Oct-03 5:51 
GeneralRe: problem in file scanning Pin
karteek27-Oct-03 6:29
karteek27-Oct-03 6:29 
GeneralRe: problem in file scanning Pin
David Crow27-Oct-03 7:27
David Crow27-Oct-03 7:27 
GeneralRe: problem in file scanning Pin
karteek27-Oct-03 18:58
karteek27-Oct-03 18:58 
GeneralRe: problem in file scanning Pin
niklo28-Oct-03 2:16
niklo28-Oct-03 2:16 
GeneralRe: problem in file scanning Pin
karteek28-Oct-03 2:20
karteek28-Oct-03 2:20 
GeneralRe: problem in file scanning Pin
niklo28-Oct-03 2:22
niklo28-Oct-03 2:22 

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.