forked from HeidiSQL/HeidiSQL
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbineditor.dfm
More file actions
96 lines (96 loc) · 2.14 KB
/
Copy pathbineditor.dfm
File metadata and controls
96 lines (96 loc) · 2.14 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
object frmBinEditor: TfrmBinEditor
Left = 0
Top = 0
Caption = 'Binary editor'
ClientHeight = 95
ClientWidth = 215
Color = clBtnFace
Constraints.MinHeight = 100
Constraints.MinWidth = 130
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
OldCreateOrder = False
Position = poMainFormCenter
OnClose = FormClose
OnCreate = FormCreate
OnDestroy = FormDestroy
OnShow = FormShow
DesignSize = (
215
95)
PixelsPerInch = 96
TextHeight = 13
object lblTextLength: TLabel
Left = 103
Top = 77
Width = 65
Height = 13
Anchors = [akLeft, akBottom]
BiDiMode = bdLeftToRight
Caption = 'lblTextLength'
ParentBiDiMode = False
end
object memoText: TMemo
Left = 0
Top = 0
Width = 215
Height = 72
Align = alTop
Anchors = [akLeft, akTop, akRight, akBottom]
Lines.Strings = (
'memoText')
ScrollBars = ssBoth
TabOrder = 0
WantTabs = True
OnChange = memoTextChange
OnKeyDown = memoTextKeyDown
end
object tlbStandard: TToolBar
Left = 0
Top = 73
Width = 97
Height = 22
Align = alNone
Anchors = [akLeft, akBottom]
Caption = 'tlbStandard'
Images = MainForm.ImageListMain
ParentShowHint = False
ShowHint = True
TabOrder = 1
object btnWrap: TToolButton
Left = 0
Top = 0
Hint = 'Wrap long lines'
Caption = 'Wrap long lines'
ImageIndex = 62
OnClick = btnWrapClick
end
object btnLoadBinary: TToolButton
Left = 23
Top = 0
Hint = 'Load binary file'
Caption = 'Load binary file'
ImageIndex = 52
OnClick = btnLoadBinaryClick
end
object btnCancel: TToolButton
Left = 46
Top = 0
Hint = 'Cancel'
Caption = 'Cancel'
ImageIndex = 26
OnClick = btnCancelClick
end
object btnApply: TToolButton
Left = 69
Top = 0
Hint = 'Apply changes'
Caption = 'Apply changes'
ImageIndex = 55
OnClick = btnApplyClick
end
end
end