-
Notifications
You must be signed in to change notification settings - Fork 86
/
uFrmLineNumber.dfm
58 lines (58 loc) · 1.08 KB
/
uFrmLineNumber.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
object frmGoToLineNumber: TfrmGoToLineNumber
Left = 770
Top = 306
BorderIcons = [biSystemMenu]
Caption = 'Go to Line Number'
ClientHeight = 98
ClientWidth = 268
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'MS Sans Serif'
Font.Style = []
KeyPreview = True
OldCreateOrder = False
Position = poScreenCenter
OnKeyPress = FormKeyPress
OnShow = FormShow
PixelsPerInch = 96
TextHeight = 16
object Label1: TLabel
Left = 16
Top = 28
Width = 133
Height = 16
Caption = 'Enter new line number:'
end
object spnLine: TSpinEdit
Left = 155
Top = 25
Width = 71
Height = 26
MaxValue = 99999
MinValue = 1
TabOrder = 0
Value = 1
end
object btnOk: TButton
Left = 185
Top = 65
Width = 75
Height = 25
Caption = 'Ok'
Default = True
ModalResult = 1
TabOrder = 1
end
object btnCancel: TButton
Left = 104
Top = 65
Width = 75
Height = 25
Cancel = True
Caption = 'Cancel'
ModalResult = 2
TabOrder = 2
end
end