CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2

Thread: CCheckListBox

  1. #1
    Join Date
    May 1999
    Location
    Bogotá, Colombia
    Posts
    37

    CCheckListBox

    Hi,

    I've got a class derived from CCheckListBox and its working just fine. However I need to get some notification of when the check box is actually clicked. Any idea on how I do this?

    A


  2. #2
    Guest

    Re: CCheckListBox

    Hi,

    CCheckListBox sends the undocumented notification CLBN_CHKCHANGE with a WM_COMMAND message. In the low word of wParam is the ID of the listbox, hi word is CLBN_CHKCHANGE (40), lParam is the window handle.

    HTH

    Martin


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured