I know that by answering True at the MouseDown event I fire the MouseUp and MouseDrag events.
First of all I assume that MouseUp is first and then it starts a fast repetition of the MoseDrag event. Hopefully this is this way and never will change, although with events one never knows…
I need to use (fire) the UP event but not the DRAG event.
What I did was to create a flag at the end of the UP event, whose value changes according the program.
The DRAG event fires or not depending on this value.
My question is: how do yo do it or how would you do it if you were in this situation?
Thanks in advance for your suggestions.