S
Sam
Hi,
This is driving me totally insane. I have two datagrid controls, and
when I click on the first one its Enter event is called properly but
the Enter event of the other one is being called straight after. I
don't understand why...
Here is my code if someone wants to have a look at that:
Private Sub dgCtrl_Enter(ByVal sender As Object, ByVal e As
System.EventArgs) Handles dgCtrl.Enter
m_dgCtrlFocused = True
m_dgFieldsFocused = False
m_dgParamsFocused = False
End Sub
Private Sub dgFields_Enter(ByVal sender As Object, ByVal e As
System.EventArgs) Handles dgFields.Enter
m_dgCtrlFocused = False
m_dgFieldsFocused = True
m_dgParamsFocused = False
End Sub
thx
This is driving me totally insane. I have two datagrid controls, and
when I click on the first one its Enter event is called properly but
the Enter event of the other one is being called straight after. I
don't understand why...
Here is my code if someone wants to have a look at that:
Private Sub dgCtrl_Enter(ByVal sender As Object, ByVal e As
System.EventArgs) Handles dgCtrl.Enter
m_dgCtrlFocused = True
m_dgFieldsFocused = False
m_dgParamsFocused = False
End Sub
Private Sub dgFields_Enter(ByVal sender As Object, ByVal e As
System.EventArgs) Handles dgFields.Enter
m_dgCtrlFocused = False
m_dgFieldsFocused = True
m_dgParamsFocused = False
End Sub
thx