source: trunk/Forms/FormImport.lfm

Last change on this file was 172, checked in by chronos, 5 months ago
  • Fixed: Avoid error in case of invalid import data.
  • Modified: Updated Common package.
File size: 2.5 KB
Line 
1object FormImport: TFormImport
2 Left = 859
3 Height = 679
4 Top = 380
5 Width = 842
6 Caption = 'Import'
7 ClientHeight = 679
8 ClientWidth = 842
9 DesignTimePPI = 144
10 OnClose = FormClose
11 OnCreate = FormCreate
12 OnDestroy = FormDestroy
13 OnShow = FormShow
14 LCLVersion = '3.0.0.3'
15 object ButtonCancel: TButton
16 Left = 578
17 Height = 37
18 Top = 631
19 Width = 113
20 Anchors = [akRight, akBottom]
21 Caption = 'Cancel'
22 ModalResult = 2
23 ParentFont = False
24 TabOrder = 0
25 end
26 object ButtonImport: TButton
27 Left = 709
28 Height = 37
29 Top = 631
30 Width = 113
31 Anchors = [akRight, akBottom]
32 Caption = 'Import'
33 ModalResult = 1
34 ParentFont = False
35 TabOrder = 1
36 OnClick = ButtonImportClick
37 end
38 object ScrollBox1: TScrollBox
39 Left = 17
40 Height = 606
41 Top = 9
42 Width = 805
43 HorzScrollBar.Page = 433
44 VertScrollBar.Page = 225
45 Anchors = [akTop, akLeft, akRight, akBottom]
46 ClientHeight = 604
47 ClientWidth = 803
48 TabOrder = 2
49 object Label1: TLabel
50 Left = 16
51 Height = 26
52 Top = 80
53 Width = 112
54 Caption = 'Input format:'
55 ParentColor = False
56 end
57 object ComboBoxInputFormat: TComboBox
58 Left = 208
59 Height = 42
60 Top = 76
61 Width = 225
62 ItemHeight = 0
63 ReadOnly = True
64 Style = csDropDownList
65 TabOrder = 0
66 OnChange = ComboBoxInputFormatChange
67 end
68 object Label2: TLabel
69 Left = 16
70 Height = 26
71 Top = 31
72 Width = 81
73 Caption = 'Input file:'
74 ParentColor = False
75 end
76 object EditInputFile: TEdit
77 Left = 208
78 Height = 43
79 Top = 24
80 Width = 464
81 Anchors = [akTop, akLeft, akRight]
82 TabOrder = 1
83 OnChange = EditInputFileChange
84 end
85 object ButtonBrowse: TButton
86 Left = 680
87 Height = 38
88 Top = 24
89 Width = 113
90 Anchors = [akTop, akRight]
91 Caption = 'Browse'
92 TabOrder = 2
93 OnClick = ButtonBrowseClick
94 end
95 object ListView1: TListView
96 Left = 19
97 Height = 414
98 Top = 168
99 Width = 775
100 Anchors = [akTop, akLeft, akRight, akBottom]
101 Columns = <>
102 ReadOnly = True
103 TabOrder = 3
104 ViewStyle = vsReport
105 end
106 object CheckBoxHumanReadableHeader: TCheckBox
107 Left = 16
108 Height = 30
109 Top = 128
110 Width = 231
111 Caption = 'Human readable header'
112 TabOrder = 4
113 end
114 end
115 object OpenDialog1: TOpenDialog
116 Left = 336
117 Top = 216
118 end
119 object TimerRedraw: TTimer
120 OnTimer = TimerRedrawTimer
121 Left = 121
122 Top = 230
123 end
124end
Note: See TracBrowser for help on using the repository browser.