source: trunk/Forms/FormExport.lfm

Last change on this file was 167, checked in by chronos, 11 months ago
  • Added: Import form preparation.
File size: 2.6 KB
Line 
1object FormExport: TFormExport
2 Left = 859
3 Height = 679
4 Top = 380
5 Width = 842
6 Caption = 'Export'
7 ClientHeight = 679
8 ClientWidth = 842
9 DesignTimePPI = 144
10 OnClose = FormClose
11 OnCreate = FormCreate
12 OnDestroy = FormDestroy
13 OnShow = FormShow
14 LCLVersion = '2.2.6.0'
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 ButtonExport: TButton
27 Left = 709
28 Height = 37
29 Top = 631
30 Width = 113
31 Anchors = [akRight, akBottom]
32 Caption = 'Export'
33 ModalResult = 1
34 OnClick = ButtonExportClick
35 ParentFont = False
36 TabOrder = 1
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 = 126
54 Caption = 'Output format:'
55 ParentColor = False
56 end
57 object ComboBoxOutputFormat: TComboBox
58 Left = 208
59 Height = 42
60 Top = 76
61 Width = 225
62 ItemHeight = 0
63 OnChange = ComboBoxOutputFormatChange
64 ReadOnly = True
65 Style = csDropDownList
66 TabOrder = 0
67 end
68 object Label2: TLabel
69 Left = 16
70 Height = 26
71 Top = 31
72 Width = 95
73 Caption = 'Output file:'
74 ParentColor = False
75 end
76 object EditOutputFile: TEdit
77 Left = 208
78 Height = 43
79 Top = 24
80 Width = 464
81 Anchors = [akTop, akLeft, akRight]
82 TabOrder = 1
83 end
84 object ButtonBrowse: TButton
85 Left = 680
86 Height = 38
87 Top = 24
88 Width = 113
89 Anchors = [akTop, akRight]
90 Caption = 'Browse'
91 OnClick = ButtonBrowseClick
92 TabOrder = 2
93 end
94 object ListView1: TListView
95 Left = 19
96 Height = 409
97 Top = 173
98 Width = 775
99 Anchors = [akTop, akLeft, akRight, akBottom]
100 Columns = <>
101 ReadOnly = True
102 TabOrder = 3
103 ViewStyle = vsReport
104 end
105 object CheckBoxHumanReadableHeader: TCheckBox
106 Left = 16
107 Height = 30
108 Top = 128
109 Width = 231
110 Caption = 'Human readable header'
111 OnChange = CheckBoxHumanReadableHeaderChange
112 TabOrder = 4
113 end
114 end
115 object SaveDialog1: TSaveDialog
116 Left = 350
117 Top = 163
118 end
119 object TimerRedraw: TTimer
120 Interval = 200
121 OnTimer = TimerRedrawTimer
122 Left = 205
123 Top = 277
124 end
125end
Note: See TracBrowser for help on using the repository browser.