I encountered a strange bug (maybe THE MOST) in my Delphi 7.
The IDE gives me a 'generous' crash if I try to access/read the
Application.Title.
The project file can't not be loaded anymore in to the IDE and it must
be rebuilt or edited from outside the IDE with a text editor.
*begin
Application.Initialize;
Application.Title := 'Crash me';
...
if NOT TrialAlreadyAnouncedToday (Application.Title)
then... < guilty
Application.Run;
end.*
If I change the line
if NOT TrialAlreadyAnouncedToday (Application.Title) then...
in
if NOT TrialAlreadyAnouncedToday ('Application.Title') then...
it works.
_______________________________________________
Delphi mailing list -> [email protected]
http://www.elists.org/mailman/listinfo/delphi