D daiweisc Member Jan 23, 2022 #1 Is there a shortcut input method for cbxNavigation_SelectedIndexChanged(Index As Int)? the code below: cbxNavigation: Private Sub cbxNavigation_SelectedIndexChanged(Index As Int) NavigationIndex = Index End Sub
Is there a shortcut input method for cbxNavigation_SelectedIndexChanged(Index As Int)? the code below: cbxNavigation: Private Sub cbxNavigation_SelectedIndexChanged(Index As Int) NavigationIndex = Index End Sub
EnriqueGonzalez Well-Known Member Licensed User Longtime User Jan 23, 2022 #2 daiweisc said: Is there a shortcut input method for cbxNavigation_SelectedIndexChanged(Index As Int)? Click to expand... you mean to trigger it manually? Even if it is an event sub you can call it manually from any other sub B4X: mySub any_other_trigger cbxNavigation_SelectedIndexChanged(0) end sub Upvote 0
daiweisc said: Is there a shortcut input method for cbxNavigation_SelectedIndexChanged(Index As Int)? Click to expand... you mean to trigger it manually? Even if it is an event sub you can call it manually from any other sub B4X: mySub any_other_trigger cbxNavigation_SelectedIndexChanged(0) end sub