I'm struggling with an event related to my communications class.
I'm calling a 'DataChange' function via event handler any time I receive new data over my serial connection. I then proceed to load that data into a DataGridView, perform some formatting, etc for the users. I'm getting a ton of problems due to the frequency at which the DataChange event is called and seems to steal the focus out of othert subroutines and functions mid-process.
For example, I'll attempt to transmit data back to the serial device. After I format the data, but before I can actually call the Send function from my library the focus is directed back to DataChange and I never actually transmit my data.
Is this a problem best addressed by threading the DataChange related routines, unhooking the DataChange event before a function or routine then rehooking, or is there some basic principle I'm not implementing.