-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathMainForm.dfm
More file actions
193 lines (193 loc) · 4.73 KB
/
MainForm.dfm
File metadata and controls
193 lines (193 loc) · 4.73 KB
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
object FormMain: TFormMain
Left = 0
Top = 0
Caption = 'Database file reader'
ClientHeight = 474
ClientWidth = 792
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'Tahoma'
Font.Style = []
OldCreateOrder = False
OnCreate = FormCreate
OnDestroy = FormDestroy
DesignSize = (
792
474)
PixelsPerInch = 96
TextHeight = 16
object spl1: TSplitter
Left = 185
Top = 0
Width = 4
Height = 474
end
object panLeft: TPanel
Left = 0
Top = 0
Width = 185
Height = 474
Align = alLeft
TabOrder = 0
object tvMain: TTreeView
Left = 1
Top = 33
Width = 183
Height = 440
Align = alClient
Indent = 19
ReadOnly = True
RowSelect = True
TabOrder = 0
OnChange = tvMainChange
end
object panFile: TPanel
Left = 1
Top = 1
Width = 183
Height = 32
Align = alTop
TabOrder = 1
DesignSize = (
183
32)
object lbFileName: TLabel
Left = 8
Top = 8
Width = 108
Height = 16
Caption = '<file not selected>'
end
object btnFileSelect: TButton
Left = 156
Top = 1
Width = 22
Height = 25
Anchors = [akTop, akRight]
Caption = '...'
TabOrder = 0
OnClick = btnFileSelectClick
end
end
end
object pgcMain: TPageControl
Left = 189
Top = 0
Width = 603
Height = 474
ActivePage = tsGrid
Align = alClient
TabOrder = 1
object tsGrid: TTabSheet
Caption = 'Grid'
ImageIndex = 1
object dgItems: TDrawGrid
Left = 0
Top = 0
Width = 595
Height = 443
Align = alClient
Options = [goFixedVertLine, goFixedHorzLine, goVertLine, goHorzLine, goRangeSelect, goColSizing]
PopupMenu = pmGrid
TabOrder = 0
OnDblClick = dgItemsDblClick
OnDrawCell = dgItemsDrawCell
OnKeyDown = dgItemsKeyDown
OnSelectCell = dgItemsSelectCell
end
end
object tsTableInfo: TTabSheet
Caption = 'Table Info'
ImageIndex = 2
object memoInfo: TMemo
AlignWithMargins = True
Left = 4
Top = 4
Width = 587
Height = 435
Margins.Left = 4
Margins.Top = 4
Margins.Right = 4
Margins.Bottom = 4
Align = alClient
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'Courier New'
Font.Style = []
ParentFont = False
ScrollBars = ssBoth
TabOrder = 0
WordWrap = False
end
end
object tsLog: TTabSheet
Caption = 'Log'
object memoLog: TMemo
AlignWithMargins = True
Left = 4
Top = 4
Width = 587
Height = 435
Margins.Left = 4
Margins.Top = 4
Margins.Right = 4
Margins.Bottom = 4
Align = alClient
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'Courier New'
Font.Style = []
Lines.Strings = (
'memoLog')
ParentFont = False
ScrollBars = ssBoth
TabOrder = 0
WordWrap = False
end
end
end
object ProgressBar: TProgressBar
Left = 584
Top = 4
Width = 200
Height = 17
Anchors = [akTop, akRight]
Max = 1000
Smooth = True
TabOrder = 2
Visible = False
end
object pmGrid: TPopupMenu
Left = 372
Top = 172
object miExporttoCSV: TMenuItem
Caption = 'Export to CSV'
OnClick = miExporttoCSVClick
end
object miDBGrid1: TMenuItem
Caption = 'TestDBGrid'
Visible = False
OnClick = miDBGrid1Click
end
object miShowAsHex: TMenuItem
Caption = 'Show numbers as Hex'
OnClick = miShowAsHexClick
end
end
object OpenDialog: TOpenDialog
Filter =
'Database files|*.gdb;*.fdb;*.cds;*.db;*.gsr;*.dbf;*.mdf;*.bak;*.' +
'mdb;*.accdb;*.pst;*.edb;*.ibd;*.sqlite;*.db3|Interbase/Firebird ' +
'files (*.gdb, *.fdb)|*.gdb;*.fdb|Midas/DataSnap files (*.cds)|*.' +
'cds|Paradox files (*.db)|*.db|Mapsoft GSR files (*.gsr)|*.gsr|dB' +
'ase/FoxPro (*.dbf)|*.dbf|MS SQL (*.mdf, *.bak)|*.mdf;*.bak|MS Ac' +
'cess/Jet (*.mdb, *.accdb)|*.mdb;*.accdb|MS Outlook (*.pst)|*.pst' +
'|MS Exchange (*.edb)|*.edb|MySQL InnoDB (*.ibd)|*.ibd|SQLite (*.' +
'sqlite, *.db3)|*.sqlite;*.db3|All files (*.*)|*.*'
Left = 124
end
end