Changeset 24 for trunk/Forms
- Timestamp:
- Nov 19, 2012, 12:31:19 PM (12 years ago)
- Location:
- trunk/Forms
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Forms/UFormEdit.lfm
r16 r24 1 1 object FormEdit: TFormEdit 2 Left = 3683 Height = 3 414 Top = 1 725 Width = 5532 Left = 297 3 Height = 368 4 Top = 145 5 Width = 664 6 6 Caption = 'Edit item' 7 ClientHeight = 3 418 ClientWidth = 5537 ClientHeight = 368 8 ClientWidth = 664 9 9 OnCreate = FormCreate 10 10 OnDestroy = FormDestroy 11 11 LCLVersion = '1.1' 12 12 object ButtonOk: TButton 13 Left = 47113 Left = 582 14 14 Height = 25 15 Top = 30515 Top = 291 16 16 Width = 75 17 17 Anchors = [akRight, akBottom] … … 21 21 end 22 22 object ButtonCancel: TButton 23 Left = 38323 Left = 582 24 24 Height = 25 25 Top = 30525 Top = 251 26 26 Width = 75 27 27 Anchors = [akRight, akBottom] … … 30 30 TabOrder = 1 31 31 end 32 object Bevel1: TBevel33 Left = 834 Height = 235 Top = 29736 Width = 53837 Anchors = [akLeft, akRight, akBottom]38 end39 32 object PanelControls: TPanel 40 33 Left = 8 41 Height = 28234 Height = 308 42 35 Top = 8 43 Width = 5 3744 Align = al Top36 Width = 567 37 Align = alLeft 45 38 Anchors = [akTop, akLeft, akRight, akBottom] 46 39 BorderSpacing.Around = 8 … … 48 41 TabOrder = 2 49 42 end 43 object ToolBarActions: TToolBar 44 Left = 0 45 Height = 44 46 Top = 324 47 Width = 664 48 Align = alBottom 49 ButtonHeight = 40 50 ButtonWidth = 44 51 Images = FormMain.ImageList1 52 ParentShowHint = False 53 ShowCaptions = True 54 ShowHint = True 55 TabOrder = 3 56 end 50 57 end -
trunk/Forms/UFormEdit.pas
r17 r24 46 46 47 47 TFormEdit = class(TForm) 48 Bevel1: TBevel;49 48 ButtonOk: TButton; 50 49 ButtonCancel: TButton; 51 50 PanelControls: TPanel; 51 ToolBarActions: TToolBar; 52 52 procedure FormCreate(Sender: TObject); 53 53 procedure FormDestroy(Sender: TObject); -
trunk/Forms/UFormList.lfm
r23 r24 345 345 object PrintPreview1: TPrintPreview 346 346 Zoom = 1 347 OnPrint = PrintPreview1Print 347 348 left = 240 348 349 top = 112 -
trunk/Forms/UFormList.pas
r23 r24 82 82 procedure ListView1SelectItem(Sender: TObject; Item: TListItem; 83 83 Selected: Boolean); 84 procedure PrintPreview1Print(Sender: TObject); 84 85 private 85 86 FView: TDataViewList; … … 249 250 end; 250 251 252 procedure TFormList.PrintPreview1Print(Sender: TObject); 253 begin 254 255 end; 256 251 257 procedure TFormList.SetView(AValue: TDataViewList); 252 258 begin -
trunk/Forms/UFormMain.lfm
r14 r24 276 276 end 277 277 end 278 object MenuItem10: TMenuItem 279 Caption = 'Test' 280 object MenuItem11: TMenuItem 281 Action = DataModuleAttendance.AReadFromTerminal 282 end 283 end 278 284 object MenuItem7: TMenuItem 279 285 Caption = 'Help' -
trunk/Forms/UFormMain.lrt
r14 r24 3 3 TFORMMAIN.MENUITEM3.CAPTION=Database 4 4 TFORMMAIN.MENUITEM6.CAPTION=View 5 TFORMMAIN.MENUITEM10.CAPTION=Test 5 6 TFORMMAIN.MENUITEM7.CAPTION=Help 6 7 TFORMMAIN.AEXIT.CAPTION=Exit -
trunk/Forms/UFormMain.pas
r23 r24 25 25 MainMenu1: TMainMenu; 26 26 MenuItem1: TMenuItem; 27 MenuItem10: TMenuItem; 28 MenuItem11: TMenuItem; 27 29 MenuItem3: TMenuItem; 28 30 MenuItem4: TMenuItem; … … 155 157 procedure TFormMain.FormShow(Sender: TObject); 156 158 begin 159 Core.CoolTranslator1.TranslateComponentRecursive(Application); 157 160 UpdateInterface; 158 161 AConnect.Execute;
Note:
See TracChangeset
for help on using the changeset viewer.