Registriert seit: 8. Mai 2005
Ort: Sondershausen
4.274 Beiträge
Delphi 6 Personal
|
Re: Farbiger Text in einer Konsolenanwendung
18. Feb 2006, 18:21
Delphi-Quellcode:
program Farbtest;
{$APPTYPE CONSOLE}
uses
Windows;
var
hConsoleInput,
hConsoleOutput: THandle;
BEGIN
hConsoleOutput := GetStdHandle(STD_OUTPUT_HANDLE);
hConsoleInput := GetStdHandle(STD_INPUT_HANDLE);
SetConsoleTextAttribute(hConsoleOutput, 5);
Writeln('Hallo');
SetConsoleTextAttribute(hConsoleOutput, 2);
Writeln('Hallo nochmal');
SetConsoleTextAttribute(hConsoleOutput, 15 + 5);
writeln('Und noch mal hallo');
SetConsoleTextAttribute(hConsoleOutput, 7);
writeln('Entertaste zum beenden.');
readln;
END.
SetConsoleTextAttribute SetConsoleTextAttribute
//Edit: zwei mal 'en Semikolon vergessen...
|