angel_ Well-Known Member Licensed User Longtime User Aug 21, 2022 #1 I can't get the event to be reached with SKRadio: B4X: Private Sub SKRadio1_Click (event As BANanoEvent) SKTools.ShowToast("Clicked on Option 1!", "info", 3000, True) End Sub Private Sub SKRadio2_Click (event As BANanoEvent) SKTools.ShowToast("Clicked on Option 2!", "info", 3000, True) End Sub
I can't get the event to be reached with SKRadio: B4X: Private Sub SKRadio1_Click (event As BANanoEvent) SKTools.ShowToast("Clicked on Option 1!", "info", 3000, True) End Sub Private Sub SKRadio2_Click (event As BANanoEvent) SKTools.ShowToast("Clicked on Option 2!", "info", 3000, True) End Sub
Solution alwaysbusy Aug 22, 2022 Looks like a naming bug in the BANanoSkeleton lib. Try: B4X: Private Sub SKRadio1_Change (event as BANanoEvent) End Sub
Looks like a naming bug in the BANanoSkeleton lib. Try: B4X: Private Sub SKRadio1_Change (event as BANanoEvent) End Sub
alwaysbusy Expert Licensed User Longtime User Aug 22, 2022 #2 Looks like a naming bug in the BANanoSkeleton lib. Try: B4X: Private Sub SKRadio1_Change (event as BANanoEvent) End Sub Upvote 0 Solution
Looks like a naming bug in the BANanoSkeleton lib. Try: B4X: Private Sub SKRadio1_Change (event as BANanoEvent) End Sub