-
Notifications
You must be signed in to change notification settings - Fork 20
/
Hex2Double.dfm
57 lines (57 loc) · 1.31 KB
/
Hex2Double.dfm
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
object FHex2DoubleDlg: TFHex2DoubleDlg
Left = 384
Top = 341
BorderStyle = bsDialog
Caption = 'Hex->Double Converter'
ClientHeight = 77
ClientWidth = 655
Color = clBtnFace
ParentFont = True
OldCreateOrder = True
Position = poScreenCenter
OnShow = FormShow
PixelsPerInch = 96
TextHeight = 13
object rgDataViewStyle: TRadioGroup
Left = 0
Top = 0
Width = 655
Height = 40
Align = alTop
Columns = 6
ItemIndex = 0
Items.Strings = (
'Hex'
'Single (32bit)'
'Double (64)'
'Extended (80)'
'Real (32)'
'Comp (64)')
TabOrder = 0
OnClick = rgDataViewStyleClick
end
object edtValue: TLabeledEdit
Left = 65
Top = 46
Width = 566
Height = 24
EditLabel.Width = 48
EditLabel.Height = 16
EditLabel.Caption = 'Value:'
EditLabel.Font.Charset = RUSSIAN_CHARSET
EditLabel.Font.Color = clWindowText
EditLabel.Font.Height = -11
EditLabel.Font.Name = 'Fixedsys'
EditLabel.Font.Style = []
EditLabel.ParentFont = False
Font.Charset = RUSSIAN_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Fixedsys'
Font.Style = []
LabelPosition = lpLeft
ParentFont = False
TabOrder = 1
OnEnter = edtValueEnter
end
end