Esignal 7.7 Beta 4
VB.NET
App runs fine it seems, but when we exit it always crashes the main esignal application with the following error:
___________
Eisignal Layout - ADVANCED CHARTING: winsig.exe - Application Error
The instruction at "0x77f5b2ab" referenced memory at "0x00000028". The memory could not be "read".
Click OK to terminate the program.
___________
App sets up two esignal.RequestTimeSales. The crash does not occur in the app that only requests one. We are requesting two by setting up an array variable "tsHandle()": i.e., tsHandle(0) and tsHandle(1).
This seems to work ok. The "OnTimeSalesChanged" event triggers seemingly reliably passing to it which ever handle's data has changed.
We separated the closing routines from the closing of the app to try to see where the crashing is occurring.
To close, we release each handle. No crash to release the handles, but will crash when the app ends.
We added "RelaseAllTimeSales()" and "ClearSymbolCache(). Still no crash, but still crashes when the app ends.
We added "esignal=Nothing". Doesn't cause a crash, but esignal main app still crashes when our app ends.
Even after rebooting the memory addresses specified in the error message are always the same.
Ideas?
VB.NET
App runs fine it seems, but when we exit it always crashes the main esignal application with the following error:
___________
Eisignal Layout - ADVANCED CHARTING: winsig.exe - Application Error
The instruction at "0x77f5b2ab" referenced memory at "0x00000028". The memory could not be "read".
Click OK to terminate the program.
___________
App sets up two esignal.RequestTimeSales. The crash does not occur in the app that only requests one. We are requesting two by setting up an array variable "tsHandle()": i.e., tsHandle(0) and tsHandle(1).
This seems to work ok. The "OnTimeSalesChanged" event triggers seemingly reliably passing to it which ever handle's data has changed.
We separated the closing routines from the closing of the app to try to see where the crashing is occurring.
To close, we release each handle. No crash to release the handles, but will crash when the app ends.
We added "RelaseAllTimeSales()" and "ClearSymbolCache(). Still no crash, but still crashes when the app ends.
We added "esignal=Nothing". Doesn't cause a crash, but esignal main app still crashes when our app ends.
Even after rebooting the memory addresses specified in the error message are always the same.
Ideas?
Comment