source: trunk/Forms/FormExport.lfm

Last change on this file was 227, checked in by chronos, 44 hours ago
  • Modified: Do not reference global Core object if possible.
File size: 1.4 KB
Line 
1object FormExport: TFormExport
2 Left = 281
3 Height = 785
4 Top = 221
5 Width = 1020
6 Caption = 'Export'
7 ClientHeight = 785
8 ClientWidth = 1020
9 DesignTimePPI = 144
10 Position = poScreenCenter
11 LCLVersion = '3.6.0.0'
12 object ButtonProcess: TButton
13 Left = 22
14 Height = 38
15 Top = 11
16 Width = 167
17 Caption = 'Process'
18 TabOrder = 0
19 OnClick = ButtonProcessClick
20 end
21 object ComboBoxDataFormat: TComboBox
22 Left = 409
23 Height = 38
24 Top = 11
25 Width = 218
26 ItemHeight = 0
27 ItemIndex = 0
28 Items.Strings = (
29 'CSV'
30 'MediaWiki List'
31 'MediaWiki Table'
32 )
33 Style = csDropDownList
34 TabOrder = 1
35 Text = 'CSV'
36 end
37 object ButtonSaveToFile: TButton
38 Left = 784
39 Height = 38
40 Top = 11
41 Width = 217
42 Anchors = [akTop, akRight]
43 Caption = 'Save to file'
44 TabOrder = 2
45 OnClick = ButtonSaveToFileClick
46 end
47 object Memo1: TMemo
48 Left = 10
49 Height = 717
50 Top = 61
51 Width = 996
52 Anchors = [akTop, akLeft, akRight, akBottom]
53 ScrollBars = ssAutoBoth
54 TabOrder = 3
55 end
56 object Label1: TLabel
57 Left = 280
58 Height = 26
59 Top = 16
60 Width = 106
61 Caption = 'Data format:'
62 ParentColor = False
63 ParentFont = False
64 end
65 object SaveDialog1: TSaveDialog
66 Left = 474
67 Top = 149
68 end
69 object JobProgressView1: TJobProgressView
70 OwnerDraw = False
71 ShowDelay = 0
72 AutoClose = True
73 Left = 472
74 Top = 256
75 end
76end
Note: See TracBrowser for help on using the repository browser.