Delphi: Access Violation at the end of Create() constructor

var
  the : TLoader;
begin
  the := the.Create;

is incorrect. It should be

var
  the : TLoader;
begin
  the := TLoader.Create;

Leave a Comment