Message for CheckBox click

  • Thread starter Thread starter _ScottDurkin
  • Start date Start date
S

_ScottDurkin

Guest
Hi all,


I am working with MFC and BCGSoft in work and i've ran into a strange problem..

In my Backstage view I have a form that's for options, in this form I have a checkbox.

But when I click the checkbox the code I am trying to call will not trigger at all..


I have added the Button Click event through the resource voice and properties tab but still nothing when changing the checkbox.

I also have a save button on this same form and the message box for that works no problem.


Any ideas on how I can resolve this?

//OnSystemTheme Switch
ON_BN_CLICKED(IDR_USE_SYSTEM_THEME, &CBackStageOptions::OnSystemTheme)


//Trigger code
void CBackStageOptions::OnSystemTheme()
{
int i = 101;
}

Continue reading...
 
Back
Top