playcom-de / Console

Library for Windows Console Applications using crt.pas
Other
24 stars 4 forks source link

Playcom Console Library

Purpose:

Library for Delphi-Console-Applications | Supports Windows 11 (and earlier)

Usage:

Include the location of the unit "crt.pas" to the searchpath in your project settings and add the unit to the uses-clauses of your project. For the use of extended functions of the library it could be necessary to add further units (e.g. "ply.console.pas", or "ply.console.extended.pas") to the uses-clauses. To demonstrate the use of the library, I have added Demo-Applications.

Feature-List:

Minimal Console-App:

program Demo01_Minimal_Console_App;
uses crt;
begin
  TextBackground(White);
  Textcolor(Red);
  ClrScr;
  Writeln('Hello World!');
  Readkey;
end.

Contributions:

Contributions are welcome, either as Pull Requests or bug reports. If you want to report a bug or you are missing a feature, contact me by email (wolfgang[at]playcom.de).

Screenshots:

Demo01

Demo02

Demo03

Demo04

Demo05

Demo06

Demo07

Demo08

Demo08