Registriert seit: 11. Okt 2003
Ort: Elbflorenz
44.342 Beiträge
Delphi 12 Athens
|
AW: Re: My Delphi 2010 is sick
4. Jul 2012, 22:47
address 00000xxx = nil
Something does not exist.
Probably cbPath has not yet been created. Check it by adding "IF cbPath <> NIL" to the first line.
or if not Assigned(cbPath) then DoError;
, Assert(Assigned(cbPath));
, Assert(cbPath <> nil);
, ...
Ein Therapeut entspricht 1024 Gigapeut.
Geändert von himitsu ( 4. Jul 2012 um 22:49 Uhr)
|