1 2 3 4 5 6 7 8 9 10 11 12 13 14
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.