Bug? jToggleSwitch V.1.0.0 - checkedChanged?

T201016

Active Member
Licensed User
Longtime User
I found it in version 1.0.0 of the jToogleSwitch library
incorrect syntax in Events: Private Sub EventName_checkedChanged(checked As boolean)

Dump.png

The correct syntax is:
correct syntax is:
Private Sub EventName_CheckedChange(Checked As Boolean)
or
Private Sub EventName_checkedChange(Checked As Boolean)
or
Private Sub EventName_CheckedChange(checked As Boolean)

Look for typos ;)
PS. the error is in the function description itself, which may be a bit misleading, because the code interpreter does not detect the error and the code does not execute.
 

DonManfred

Expert
Licensed User
Longtime User
Top