Re: Dave, how do I detect double clicks on List items?
- Posted by David Cuny <dcuny at LANSET.COM> Sep 07, 1999
- 467 views
Derek Brown wondered: > What I'm trying to do is open a window that edits > list items when you double click them Use onMouse to trap the double click. Here's an example: procedure Mouse( integer event, integer x, integer y ) if event = LEFT_DOUBLECLICK then -- your code goes here... end if end procedure onMouse[List01] = routine_id("Mouse") -- David Cuny