Course list http://www.c-jump.com/bcc/

Lab 12: Radio buttons


  1. Description
  2. Copying Visual Studio Project
  3. Adding widgets in FLUID
  4. Examining the button callbacks
  5. How to submit

Description



Copying Visual Studio Project



Adding widgets in FLUID



Examining the button callbacks


  1. Open solution

    
        c255labs\labs\c255_lab12_radio_btn\c255_lab12.sln
    
    

    in Visual Studio.

  2. Download the new versions of

  3. Compile and test the program.

  4. Open CMainWindow.h in the text editor and examine the code:

  5. Open CMainWindow.cpp in the text editor. Examine the code. Notice that CMainWindow::show() attaches the same callback to each radio button object.

  6. Using Visual Studio debugger, trace calls resulting from a mouse click that selects a radio button. What is the sequence of the invoked functions?

     


How to submit