<ButtonName>.OnCallBack

<< Click to Display Table of Contents >>

Navigation:  ThinBASIC Modules > UI (User Interface) > CONTROLS > Control Types > Button Control > Button Control Creation > CONTROL ADD BUTTON > Automatic Button Events >

<ButtonName>.OnCallBack

 

In order to process any event of the button, you may consider creating a callback function derived from control name.

 

  control add button name "myButton", hDlg, %controlMyButton"", 5, 5, 100, 100

 

...

 

callback function myButton.OnCallBack()

select case callback_message

  case ...

  case ...

end select

end function

 

Anytime event arrives, this function will be called and you can reach for standard callback parameters, such as cbhndl, from it.

 

This way you can easily process any messages on one place.