Ich habe nun das Datenmodul eingefügt. Sobald ich aber den Dateiname des Datenmoduls ändere wird das Projekt nicht mehr kompilliert.
Zitat:
[dcc32 Fehler] hcTransport.dpr(18): E2003 Undeklarierter Bezeichner: 'TAction'
*.dpr Datei
Delphi-Quellcode:
program hcTransport;
uses
Vcl.Forms,
main
in '
main.pas'
{frmMain},
dmod_prg
in '
dmod_prg.pas'
{dm: TDataModule},
Kalender
in '
Kalender.pas'
{Hauptprogramm},
Actions
in '
Actions.pas'
{Action: TDataModule};
{$R *.res}
begin
Application.Initialize;
Application.MainFormOnTaskbar := True;
Application.CreateForm(Tdm, dm);
Application.CreateForm(TfrmMain, frmMain);
Application.CreateForm(THauptprogramm, Hauptprogramm);
Application.CreateForm(TAction, Action);
Application.Run;
end.
Action.pas
Delphi-Quellcode:
unit Actions;
interface
uses
System.SysUtils, System.Classes;
type
TAction =
class(TDataModule)
private
{ Private-Deklarationen }
public
{ Public-Deklarationen }
end;
var
Action: TAction;
implementation
{%CLASSGROUP 'Vcl.Controls.TControl'}
{$R *.dfm}
end.