Hallo,
Aufgabenbeschreibung:
eine Konsolenanwendung, soll eine andere Konsolenanwendung auslesen, und den Wert verarbeiten und dann speichern.
Mit einem
Grafischen Windowsprogramm ist das kein Problem:
uses ... DosCommand_2009 ...
Delphi-Quellcode:
TForm1 = class(TForm)
DosCommand1: TDosCommand;
...
var
cmd: TDoscommand;
...
Aber wie geht das gleiche mit einer
Konsolenanwendung??
Über Projekteinstellungen/Projektinspektor DosCommand_2009 aufgenommen.
Delphi-Quellcode:
TMyApplication = class(TCustomApplication)
protected
procedure DoRun; override;
public
DosCommand1: TDosCommand;
constructor Create(TheOwner: TComponent); override;
destructor Destroy; override;
procedure WriteHelp; virtual;
end;
Error:...
project1.lpr(20,29) Error: Identifier not found "TDosCommand"
Aber warum?
Nehme DosCommand_2009 aus dem Projektinspektor raus und schreibe es selbst ins Uses, dann meckert er weiter " Error: Identifier not found "graphics"" in DosCommand_2009....
Woran liegt es?
LG
Monday