|
| 1 | +program DBAwareLabeledComponentsDemo; |
| 2 | + |
| 3 | +uses |
| 4 | + Vcl.Forms, |
| 5 | + Main in 'Main.pas' {MainForm}, |
| 6 | + Vcl.LabeledShellUtils in '..\Source\Vcl.LabeledShellUtils.pas', |
| 7 | + Vcl.LabeledMask in '..\Source\Vcl.LabeledMask.pas', |
| 8 | + Vcl.LabeledExtCtrls in '..\Source\Vcl.LabeledExtCtrls.pas', |
| 9 | + Vcl.LabeledDBListView in '..\Source\Vcl.LabeledDBListView.pas', |
| 10 | + Vcl.LabeledDbImage in '..\Source\Vcl.LabeledDbImage.pas', |
| 11 | + Vcl.LabeledDBCtrls in '..\Source\Vcl.LabeledDBCtrls.pas', |
| 12 | + Vcl.LabeledCurrencyEdit in '..\Source\Vcl.LabeledCurrencyEdit.pas', |
| 13 | + Vcl.LabeledCtrls in '..\Source\Vcl.LabeledCtrls.pas', |
| 14 | + Vcl.LabeledComCtrls in '..\Source\Vcl.LabeledComCtrls.pas', |
| 15 | + Vcl.LabeledColorGrd in '..\Source\Vcl.LabeledColorGrd.pas', |
| 16 | + Vcl.LabeledCheckLst in '..\Source\Vcl.LabeledCheckLst.pas', |
| 17 | + Vcl.DbAwareLabeledUtils in '..\Source\Vcl.DbAwareLabeledUtils.pas', |
| 18 | + Vcl.DbAwareLabeledConsts in '..\Source\Vcl.DbAwareLabeledConsts.pas', |
| 19 | + Vcl.BoundLabel in '..\Source\Vcl.BoundLabel.pas'; |
| 20 | + |
| 21 | +{$R *.res} |
| 22 | + |
| 23 | +begin |
| 24 | + Application.Initialize; |
| 25 | + Application.Title := 'Normal and DataAware Labeled Components Editors Demo - Copyright (c) 2021 Ethea S.r.l.'; |
| 26 | + Application.MainFormOnTaskbar := True; |
| 27 | + Application.CreateForm(TMainForm, MainForm); |
| 28 | + Application.Run; |
| 29 | +end. |
0 commit comments