1object DbgFeedbackDlg: TDbgFeedbackDlg
2  Left = 480
3  Height = 212
4  Top = 140
5  Width = 605
6  AutoSize = True
7  BorderIcons = [biSystemMenu]
8  BorderStyle = bsSizeToolWin
9  Caption = 'DbgFeedbackDlg'
10  ClientHeight = 212
11  ClientWidth = 605
12  Position = poScreenCenter
13  LCLVersion = '2.1.0.0'
14  object ButtonPanel1: TButtonPanel
15    Left = 6
16    Height = 34
17    Top = 172
18    Width = 593
19    OKButton.Name = 'OKButton'
20    OKButton.DefaultCaption = True
21    HelpButton.Name = 'HelpButton'
22    HelpButton.DefaultCaption = True
23    HelpButton.OnClick = HelpButtonClick
24    CloseButton.Name = 'CloseButton'
25    CloseButton.DefaultCaption = True
26    CloseButton.Enabled = False
27    CancelButton.Name = 'CancelButton'
28    CancelButton.DefaultCaption = True
29    TabOrder = 0
30    ShowButtons = [pbOK, pbCancel, pbHelp]
31    ShowGlyphs = [pbOK, pbCancel]
32  end
33  object Panel1: TPanel
34    Left = 0
35    Height = 166
36    Top = 0
37    Width = 605
38    Align = alClient
39    AutoSize = True
40    BevelOuter = bvNone
41    ClientHeight = 166
42    ClientWidth = 605
43    TabOrder = 1
44    object lblMsg: TLabel
45      Left = 5
46      Height = 15
47      Top = 5
48      Width = 595
49      Align = alTop
50      BorderSpacing.Around = 5
51      Caption = 'lblMsg'
52      ParentColor = False
53      WordWrap = True
54    end
55    object Memo1: TMemo
56      Left = 5
57      Height = 136
58      Top = 25
59      Width = 595
60      Align = alClient
61      BorderSpacing.Around = 5
62      Constraints.MinHeight = 100
63      Lines.Strings = (
64        'Memo1'
65      )
66      ReadOnly = True
67      ScrollBars = ssAutoVertical
68      TabOrder = 0
69      Visible = False
70    end
71  end
72end
73