Changeset 24 for trunk/Modules/Attendance/UFormVirtualTerminal.pas
- Timestamp:
- Nov 19, 2012, 12:31:19 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/Attendance/UFormVirtualTerminal.pas
r20 r24 6 6 7 7 uses 8 Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs; 8 Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, Spin, 9 StdCtrls, ExtCtrls; 9 10 10 11 type … … 12 13 end; 13 14 15 { TFormVirtualAccessControler } 16 14 17 TFormVirtualAccessControler = class(TForm) 18 ButtonPress: TButton; 19 Label1: TLabel; 20 Label2: TLabel; 21 Label3: TLabel; 22 LabelTime: TLabel; 23 SpinEditUser: TSpinEdit; 24 SpinEditKey: TSpinEdit; 25 Timer1: TTimer; 26 procedure Timer1Timer(Sender: TObject); 15 27 private 16 28 { private declarations } … … 26 38 {$R *.lfm} 27 39 40 { TFormVirtualAccessControler } 41 42 procedure TFormVirtualAccessControler.Timer1Timer(Sender: TObject); 43 begin 44 LabelTime.Caption := DateTimeToStr(Now); 45 end; 46 28 47 end. 29 48
Note:
See TracChangeset
for help on using the changeset viewer.