hi
in a rather silly move, while attempting to fully remove a Form from my project, i started editing the project1.dpr file. however, now, it refuses to compile giving the error:
[Fatal Error] Project1.dpr(5): File not found: 'Form.dcu'
The full source code is this:
program Project1;
uses
Form,
Unit1 in 'Unit1.pas' {CentralForm};
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TCentralForm, CentralForm);
Application.Run;
end.
any help INCREDIBLY appreciated.
in a rather silly move, while attempting to fully remove a Form from my project, i started editing the project1.dpr file. however, now, it refuses to compile giving the error:
[Fatal Error] Project1.dpr(5): File not found: 'Form.dcu'
The full source code is this:
program Project1;
uses
Form,
Unit1 in 'Unit1.pas' {CentralForm};
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TCentralForm, CentralForm);
Application.Run;
end.
any help INCREDIBLY appreciated.