B4J Question Is there a shortcut input method for cbxNavigation_SelectedIndexChanged(Index As Int)?

daiweisc

Member
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
Is there a shortcut input method for cbxNavigation_SelectedIndexChanged(Index As Int)?
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
Cookies are required to use this site. You must accept them to continue using the site. Learn more…