18 lines
320 B
Plaintext
18 lines
320 B
Plaintext
program AutomationDemo;
|
|
|
|
uses
|
|
Vcl.Forms,
|
|
DemoForm in 'DemoForm.pas' {Form2},
|
|
AutomatedCombobox in 'AutomatedCombobox.pas';
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
ReportMemoryLeaksOnShutdown := True;
|
|
|
|
Application.Initialize;
|
|
Application.MainFormOnTaskbar := True;
|
|
Application.CreateForm(TForm2, Form2);
|
|
Application.Run;
|
|
end.
|