Hallo!
Wie ich schon geschrieben habe, ist das Programm eine Konsolenanwendung:
Code:
program advText;
{$APPTYPE CONSOLE}
uses
SysUtils,
ceText in '..\ChrisEngine\ceText.pas', // <- dämlicher Name, Ich weiß :-D
ceMath in '..\ChrisEngine\ceMath.pas'; // <- dämlicher Name, Ich weiß :-D
var
TextClass : TText;
MathClass : TMath;
begin
TextClass.printf('Hallo Welt!');
TextClass.printf('Hallo Welt in blau!, 1);
Readln;
end.
Also das {$APPTYPE console} ist vorhanden, Ich habe es auchmal in die erste Zeile geschoben(mit program advText vertauscht), das hat aber auch keine Besserung gebracht
Grüße
Christoph