blob: 9f2bd2fd566772d82d141022333816fd99884202 [file] [log] [blame]
program Project1;
uses
Forms,
SampleUI in 'SampleUI.pas' {OKBottomDlg},
SampleCode in 'SampleCode.pas';
{$R *.RES}
begin
Application.Initialize;
Application.CreateForm(TOKBottomDlg, OKBottomDlg);
Application.Run;
end.