Einzelnen Beitrag anzeigen

Benutzerbild von DP News-Robot
DP News-Robot

Registriert seit: 4. Jun 2010
15.021 Beiträge
 
#1

Tracking down Delphi “abstract error” occassions.

  Alt 12. Nov 2020, 05:10
A few tips. Set breakpoints in these units: System.pas: procedure _AbstractError; begin if Assigned(AbstractErrorProc) then AbstractErrorProc; RunErrorAt(210, ReturnAddress); end; System.SysUtils.pas: procedure AbstractErrorHandler; begin raise EAbstractError.CreateRes(@SAbstractError); end; add a watch for ClassName that has “Allow side effects and function calls” enabled run your code until it breaks or stops (usually in the first method above) double […]

Weiterlesen...
  Mit Zitat antworten Zitat