-
Notifications
You must be signed in to change notification settings - Fork 0
/
taskedit.lfm
80 lines (80 loc) · 1.96 KB
/
taskedit.lfm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
object TaskEditForm: TTaskEditForm
Left = 226
Height = 288
Top = 205
Width = 557
ActiveControl = TaskNameDBEdit
AutoSize = True
BorderStyle = bsDialog
Caption = 'Edit task'
ChildSizing.LeftRightSpacing = 10
ChildSizing.TopBottomSpacing = 10
ChildSizing.HorizontalSpacing = 10
ChildSizing.VerticalSpacing = 10
ChildSizing.Layout = cclLeftToRightThenTopToBottom
ChildSizing.ControlsPerLine = 2
ClientHeight = 288
ClientWidth = 557
OnShow = FormShow
Position = poOwnerFormCenter
LCLVersion = '2.2.4.0'
object TaskNameLabel: TLabel
Left = 10
Height = 23
Top = 10
Width = 63
Alignment = taRightJustify
Caption = 'Name:'
ParentColor = False
end
object TaskNameDBEdit: TDBEdit
Left = 83
Height = 23
Top = 10
Width = 400
DataField = 'name'
DataSource = DatabaseDataModule.TasksDataSource
Constraints.MinWidth = 400
MaxLength = 0
TabOrder = 0
end
object TaskDescriptionLabel: TLabel
Left = 10
Height = 150
Top = 43
Width = 63
Alignment = taRightJustify
Caption = 'Description:'
ParentColor = False
end
object TaskDescriptionDBMemo: TDBMemo
Left = 83
Height = 150
Top = 43
Width = 400
BorderSpacing.Bottom = 70
Constraints.MinHeight = 150
Constraints.MinWidth = 400
DataField = 'description'
DataSource = DatabaseDataModule.TasksDataSource
MaxLength = 512
ScrollBars = ssAutoBoth
TabOrder = 1
end
object ButtonPanel1: TButtonPanel
Left = 10
Height = 34
Top = 244
Width = 537
OKButton.Name = 'OKButton'
OKButton.Caption = 'Save'
HelpButton.Name = 'HelpButton'
HelpButton.DefaultCaption = True
CloseButton.Name = 'CloseButton'
CloseButton.DefaultCaption = True
CancelButton.Name = 'CancelButton'
CancelButton.Caption = 'Cancel'
TabOrder = 2
ShowButtons = [pbOK, pbCancel]
end
end