Hi
I have many combo boxes in a form. I would like that each time any combo box item selected change, to call a procedure.
Is there any way I can create a global procedure instead to have this event:
"Private Sub CmbUnitType_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CmbUnitType.SelectedIndexChanged
bFindNodeText("A010", 1, Me.CmbUnitType.Text)
End Sub"
for each combo box...
thanks
I have many combo boxes in a form. I would like that each time any combo box item selected change, to call a procedure.
Is there any way I can create a global procedure instead to have this event:
"Private Sub CmbUnitType_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CmbUnitType.SelectedIndexChanged
bFindNodeText("A010", 1, Me.CmbUnitType.Text)
End Sub"
for each combo box...
thanks