I found it in version 1.0.0 of the jToogleSwitch library
incorrect syntax in Events: Private Sub EventName_checkedChanged(checked As boolean)
The correct syntax is:
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.
incorrect syntax in Events: Private Sub EventName_checkedChanged(checked As boolean)
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.