View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Mike[_110_] Mike[_110_] is offline
external usenet poster
 
Posts: 3
Default Right click generates 2 mousedown events??

When I right click in a TextBox, it generates two mousedown events. Is this
normal, or do I have a problem? Code below illustrates the "problem".

thanks for any insight!!

Private Sub TextBox1_MouseDown(ByVal Button As Integer, ByVal Shift As
Integer, ByVal X As Single, ByVal Y As Single)
Static i As Integer
i = i + 1
Debug.Print i
End Sub

Immediate Window:
1
2