source: tags/1.0.0/Forms/UFormImportFormat.lfm

Last change on this file was 31, checked in by chronos, 8 years ago
  • Added: Import format for MS Access database.
  • Added: Show text hints on toolbar buttons.
File size: 3.7 KB
Line 
1object FormImportFormat: TFormImportFormat
2 Left = 461
3 Height = 433
4 Top = 321
5 Width = 664
6 Caption = 'Import format'
7 ClientHeight = 433
8 ClientWidth = 664
9 OnCreate = FormCreate
10 OnShow = FormShow
11 LCLVersion = '1.6.0.4'
12 object ButtonOk: TButton
13 Left = 560
14 Height = 25
15 Top = 384
16 Width = 75
17 Anchors = [akRight, akBottom]
18 Caption = 'Ok'
19 ModalResult = 1
20 TabOrder = 0
21 end
22 object ButtonCancel: TButton
23 Left = 464
24 Height = 25
25 Top = 384
26 Width = 75
27 Anchors = [akRight, akBottom]
28 Caption = 'Cancel'
29 ModalResult = 2
30 TabOrder = 1
31 end
32 object Label1: TLabel
33 Left = 20
34 Height = 20
35 Top = 53
36 Width = 43
37 Caption = 'Name:'
38 ParentColor = False
39 end
40 object EditName: TEdit
41 Left = 179
42 Height = 28
43 Top = 48
44 Width = 461
45 Anchors = [akTop, akLeft, akRight]
46 TabOrder = 2
47 end
48 object Label8: TLabel
49 Left = 20
50 Height = 20
51 Top = 90
52 Width = 72
53 Caption = 'Block start:'
54 ParentColor = False
55 end
56 object EditBlockStart: TEdit
57 Left = 179
58 Height = 28
59 Top = 85
60 Width = 461
61 Anchors = [akTop, akLeft, akRight]
62 TabOrder = 3
63 end
64 object Label9: TLabel
65 Left = 20
66 Height = 20
67 Top = 130
68 Width = 68
69 Caption = 'Block end:'
70 ParentColor = False
71 end
72 object EditBlockEnd: TEdit
73 Left = 179
74 Height = 28
75 Top = 125
76 Width = 461
77 Anchors = [akTop, akLeft, akRight]
78 TabOrder = 4
79 end
80 object ListViewItemRules: TListView
81 Left = 20
82 Height = 192
83 Top = 181
84 Width = 620
85 Anchors = [akTop, akLeft, akRight, akBottom]
86 Columns = <
87 item
88 Caption = 'Start string'
89 Width = 100
90 end
91 item
92 Caption = 'End string'
93 Width = 100
94 end
95 item
96 Caption = 'Action'
97 Width = 100
98 end
99 item
100 Caption = 'Variable'
101 Width = 100
102 end
103 item
104 Caption = 'Repetition'
105 Width = 100
106 end>
107 OwnerData = True
108 PopupMenu = PopupMenu1
109 ReadOnly = True
110 RowSelect = True
111 TabOrder = 5
112 ViewStyle = vsReport
113 OnData = ListViewItemRulesData
114 OnDblClick = AModifyExecute
115 end
116 object Label2: TLabel
117 Left = 20
118 Height = 20
119 Top = 157
120 Width = 68
121 Caption = 'Item rules:'
122 ParentColor = False
123 end
124 object Label3: TLabel
125 Left = 20
126 Height = 20
127 Top = 13
128 Width = 35
129 Caption = 'Type:'
130 ParentColor = False
131 end
132 object ComboBoxType: TComboBox
133 Left = 179
134 Height = 28
135 Top = 13
136 Width = 197
137 ItemHeight = 20
138 Items.Strings = (
139 'Text parse'
140 'MS Access database'
141 )
142 Style = csDropDownList
143 TabOrder = 6
144 end
145 object PopupMenu1: TPopupMenu
146 Images = FormMain.ImageList1
147 left = 181
148 top = 277
149 object MenuItem1: TMenuItem
150 Action = AAdd
151 end
152 object MenuItem2: TMenuItem
153 Action = AModify
154 end
155 object MenuItem3: TMenuItem
156 Action = ARemove
157 end
158 object MenuItem4: TMenuItem
159 Action = AMoveUp
160 end
161 object MenuItem5: TMenuItem
162 Action = AMoveDown
163 end
164 end
165 object ActionList1: TActionList
166 Images = FormMain.ImageList1
167 left = 383
168 top = 282
169 object AAdd: TAction
170 Caption = 'Add'
171 OnExecute = AAddExecute
172 ShortCut = 45
173 end
174 object AModify: TAction
175 Caption = 'Modify'
176 OnExecute = AModifyExecute
177 ShortCut = 13
178 end
179 object ARemove: TAction
180 Caption = 'Remove'
181 OnExecute = ARemoveExecute
182 ShortCut = 46
183 end
184 object AMoveUp: TAction
185 Caption = 'Move up'
186 OnExecute = AMoveUpExecute
187 end
188 object AMoveDown: TAction
189 Caption = 'Move down'
190 OnExecute = AMoveDownExecute
191 end
192 end
193end
Note: See TracBrowser for help on using the repository browser.