Changeset 32 for trunk/Forms/FormRecord.pas
- Timestamp:
- Jun 29, 2024, 7:58:36 AM (5 months ago)
- File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/Forms/FormRecord.pas
r31 r32 1 unit UFormRecord;1 unit FormRecord; 2 2 3 3 interface … … 5 5 uses 6 6 Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, ExtCtrls, 7 ComCtrls, ActnList, StdCtrls, EditBtn, UDatabase, Spin, Generics.Collections; 7 ComCtrls, ActnList, StdCtrls, EditBtn, DbEngine, Spin, Generics.Collections, 8 FormEx; 8 9 9 10 type … … 11 12 { TFormRecord } 12 13 13 TFormRecord = class(TForm )14 TFormRecord = class(TFormEx) 14 15 ASave: TAction; 15 16 ACancel: TAction; … … 37 38 38 39 uses 39 UDataTypes, UCore;40 DataTypes; 40 41 41 42 {$R *.lfm} … … 89 90 LineHeight: Integer; 90 91 begin 91 LineHeight := Core.ScaleDPI1.ScaleY(35, Core.ScaleDPI1.DesignDPI.Y);92 LineHeight := TFormEx.ScaleDPI.ScaleY(35, TFormEx.ScaleDPI.DesignDPI.Y); 92 93 93 94 Row := DataRecord;
Note:
See TracChangeset
for help on using the changeset viewer.