1object frmGoto: TfrmGoto
2  Left = 423
3  Height = 101
4  Top = 427
5  Width = 250
6  AutoSize = True
7  BorderIcons = [biSystemMenu]
8  BorderStyle = bsDialog
9  Caption = 'frmGoto'
10  ClientHeight = 101
11  ClientWidth = 250
12  LCLVersion = '2.1.0.0'
13  object Label1: TLabel
14    Left = 6
15    Height = 14
16    Top = 6
17    Width = 238
18    Align = alTop
19    BorderSpacing.Around = 6
20    Caption = 'Label1'
21    ParentColor = False
22  end
23  object Edit1: TEdit
24    Left = 6
25    Height = 21
26    Top = 26
27    Width = 238
28    Align = alTop
29    BorderSpacing.Around = 6
30    Constraints.MinWidth = 200
31    OnChange = Edit1Change
32    OnKeyPress = Edit1KeyPress
33    TabOrder = 0
34    Text = 'Edit1'
35  end
36  object ButtonPanel1: TButtonPanel
37    Left = 6
38    Height = 26
39    Top = 53
40    Width = 238
41    Align = alTop
42    OKButton.Name = 'OKButton'
43    OKButton.DefaultCaption = True
44    HelpButton.Name = 'HelpButton'
45    HelpButton.DefaultCaption = True
46    HelpButton.Enabled = False
47    CloseButton.Name = 'CloseButton'
48    CloseButton.DefaultCaption = True
49    CloseButton.Enabled = False
50    CancelButton.Name = 'CancelButton'
51    CancelButton.DefaultCaption = True
52    TabOrder = 1
53    ShowButtons = [pbOK, pbCancel]
54    ShowBevel = False
55  end
56end
57