Adding Controls to listcontrol

Environment: VC++, list controls

To insert a control:

  1. Select Radio Button.
  2. Select SubItem Control index From [SubItem Index] ComboBox.
  3. Press Insert Control Button.

To add to control text:

  1. Select SubItem Control index From [SubItem Index] ComboBox.
  2. Press [Add Text ToControl] Button.

Attach Message [ Message like BN_CLICKED] + Message Handler [Function of   void * pFunction () type ]

m_NeuListCtrl.AttachEvent_HandlerForItemControl(
              0,BN_CLICKED,pFuncShowColorDialog);

I am setting Message BN_CLICKED and Message Handler pFuncShowColorDialog For Control at SubItem 0.

Clicking the button will display the Color dialog.

Downloads


Download demo project – 14 Kb


Download source code – 45 Kb

More by Author

Get the Free Newsletter!

Subscribe to Developer Insider for top news, trends & analysis

Must Read