Reputation: 249
I have an application in Delphi 5, legacy, that after some implementations, Access Violation and Out of system resources began to occur at different points and no obvious reason for the problem occurs.
This system has several cast, where the main class can become several classes.
Example:
(Teste as TCaixa).Element
What or how can I do to try to discover the source of the problem?
Upvotes: 0
Views: 1133
Reputation: 2152
From your errors, if it happens in production but not in your dev environment, then it might mean that the errors only occur with prolonged use.
Due to the possible size of the legacy source, I will recommend trying to get stack traces and debug output from the production environment to give you a general direction that you need to look at.
Upvotes: 0