-
Notifications
You must be signed in to change notification settings - Fork 2
/
frm_GotoLine.dfm
66 lines (66 loc) · 1.17 KB
/
frm_GotoLine.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
58
59
60
61
62
63
64
65
66
object frmGotoLine: TfrmGotoLine
Left = 617
Top = 426
BorderStyle = bsDialog
Caption = 'Go to Line Number'
ClientHeight = 76
ClientWidth = 356
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
OldCreateOrder = False
OnShow = FormShow
PixelsPerInch = 96
TextHeight = 13
object lblLineNumber: TLabel
Left = 16
Top = 14
Width = 60
Height = 13
Caption = 'Line Number'
end
object lblCharNumber: TLabel
Left = 16
Top = 47
Width = 75
Height = 13
Caption = 'Column Number'
end
object edtCharNumber: TEdit
Left = 120
Top = 43
Width = 121
Height = 21
TabOrder = 1
end
object edtLineNumber: TEdit
Left = 120
Top = 10
Width = 121
Height = 21
TabOrder = 0
end
object Button1: TButton
Left = 272
Top = 41
Width = 75
Height = 25
Cancel = True
Caption = 'Cancel'
ModalResult = 2
TabOrder = 3
end
object btnGoto: TButton
Left = 272
Top = 7
Width = 75
Height = 26
Caption = 'OK'
Default = True
ModalResult = 1
TabOrder = 2
end
end