When i switch from option1 to option2 using arrows, i get 2x a wm_command and bn_clicked.
When i click a button with a msgbox call, after the msgbox option1 get's the focus.
(usual for windows)
But this also results in a option-click (while it's not beeing selected)
This is a part of my callback;
CallBack Function My_CallBack()
Select Case cbmsg
Case %WM_COMMAND
If cbctlmsg = %BN_CLICKED Then
Select Case CBCTL
Case %ID_Option1
Case %ID_Option2
End Select
End If
End Select
End Function
When i click a button with a msgbox call, after the msgbox option1 get's the focus.
(usual for windows)
But this also results in a option-click (while it's not beeing selected)
This is a part of my callback;
CallBack Function My_CallBack()
Select Case cbmsg
Case %WM_COMMAND
If cbctlmsg = %BN_CLICKED Then
Select Case CBCTL
Case %ID_Option1
Case %ID_Option2
End Select
End If
End Select
End Function
Comment