Double-Click On A Grid in VB .NET 2003

  • Thread starter Thread starter Atley
  • Start date Start date
A

Atley

THere is no event handler in .Net 2003 for Double-Click... I need to make a
difference between selecting the grid and wanting to move to another for for
details...

Any thoughts, suggestions? I tried using the Timer to check if the clicks
were within an acceptable amount of time, but it seems like a poor
workaround...

Any help is greatly appreciated.

Atley
 
Have you tried to determine this from the
MouseEventArgs.Clicks property? I'm not sure this will
work any better than your timer... you *want* the
MouseEventArgs in the Click event handler... but you GET
it only in the MouseUp etc... wann bet it's always == 1??
 
Back
Top