System.StackOverflowException

ALX

Well-known member
Joined
Nov 16, 2005
Messages
253
Location
Columbia, SC
Programming Experience
10+
A process in my program allows the user to sequentially scroll through and display records from an array using "MouseDown" and "MouseUp" events (for the "UP" and "DOWN" keys) to increase or decrease the array pointer. All works great unless the user holds the key down for an extended period (300 - 400 records). Then I get an unhandled exception error...
"System.StackOverflowException' occurred in mscorlib.dll"
I tried inserting an "Application.DoEvents" in the flow but that doesn't solve the problem.
...Anyone have a clue ?????
 
Back
Top