Can I have two actions taken with OnselectedIndexChanged with Datagrids?
Can I have two actions taken with OnselectedIndexChanged with Datagrids?
# 1 Re: Can I have two actions taken with OnselectedIndexChanged with Datagrids?
What do you mean by "actions?" You can execute any code you want in the OnSelectedIndexChanged event.
# 2 Re: Can I have two actions taken with OnselectedIndexChanged with Datagrids?
What do you mean by "actions?" You can execute any code you want in the OnSelectedIndexChanged event.
what I want to do is OnSelectedIndexChanged execute two seperate functions
# 3 Re: Can I have two actions taken with OnselectedIndexChanged with Datagrids?
Protected Sub DataGrid1_SelectedIndexChanged(ByVal sender As Object, _
ByVal e As System.EventArgs) Handles DataGrid1.SelectedIndexChanged
Function1()
Function2()
End Sub