T
tomb
Please help!
I have a handler in a class that handles when a column in a table is
modified, as such:
dtWhatif = dsOp.Tables("whatif")
AddHandler dtWhatif.ColumnChanged, New
DataColumnChangeEventHandler(AddressOf Whatif_Changed)
When testing this, I got an error: An unhandled exception of type
'System.StackOverflowException' occurred in system.dll
So I put a debug statement in to see why the stack is overflowing. This
handler was called 4082 times! All I did was change the value in one
cell of a datagrid!
Why?! Why?!
Tom
I have a handler in a class that handles when a column in a table is
modified, as such:
dtWhatif = dsOp.Tables("whatif")
AddHandler dtWhatif.ColumnChanged, New
DataColumnChangeEventHandler(AddressOf Whatif_Changed)
When testing this, I got an error: An unhandled exception of type
'System.StackOverflowException' occurred in system.dll
So I put a debug statement in to see why the stack is overflowing. This
handler was called 4082 times! All I did was change the value in one
cell of a datagrid!
Why?! Why?!
Tom