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

    Grouped Radio Buttons

    Hello,

    I haven't used radio buttons for awhile and I don't recall how to group them all to one notify message... ei OnRadioGroup(UINT nItem) I've got them grouping in the resource correctly, as far as interface/item selection but I can't seem to get that group notify going. Any help would be much appreciated.

    Thanks,
    Chance


  2. #2
    Join Date
    May 1999
    Location
    Sydney, Australia
    Posts
    420

    Re: Grouped Radio Buttons


    make the first radio button in the group have the WS_GROUP (?) attribute
    all following radio buttions, NOT having the WS_GROUP style set, will be long to that group until either
    a) a non radio button is specified
    OR
    b) a radio button with the WS_GROUP style set

    Sally


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