C
Cal
I have textboxarray txtRatio and the following routine to handle the click
events.
Private Sub txtRatio_Click(ByVal eventSender As System.Object, ByVal
eventArgs As System.EventArgs) Handles txtRatio.Click
Dim Index As Short = txtRatio.GetIndex(eventSender)
mlngHasFocus = mlngCODE_FOR_RATIO
mlngHasFocusIndex = Index
DoRatio()
End Sub
However the compiler gives the following error message:
Click event can not be found (for Handles txtRatio.Click)
Anyone know what's going on?
Thanks
Cal
events.
Private Sub txtRatio_Click(ByVal eventSender As System.Object, ByVal
eventArgs As System.EventArgs) Handles txtRatio.Click
Dim Index As Short = txtRatio.GetIndex(eventSender)
mlngHasFocus = mlngCODE_FOR_RATIO
mlngHasFocusIndex = Index
DoRatio()
End Sub
However the compiler gives the following error message:
Click event can not be found (for Handles txtRatio.Click)
Anyone know what's going on?
Thanks
Cal