Compiling and Testing a Delphi Application
program MyApp;
uses
Windows,
Forms,
VirtualUI_AutoRun,
MyApp.Main in MyApp.Main.pas' {Form1};
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.

Last updated
Was this helpful?
