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 67 68 69 70 71 72 73 74 75 76 77 78 79
|
object IDEInfoNeedBuildDlg: TIDEInfoNeedBuildDlg
Left = 522
Height = 434
Top = 232
Width = 655
BorderIcons = [biSystemMenu, biMaximize]
Caption = 'IDEInfoNeedBuildDlg'
ClientHeight = 434
ClientWidth = 655
OnClose = FormClose
OnCreate = FormCreate
OnDestroy = FormDestroy
OnKeyDown = FormKeyDown
Position = poScreenCenter
LCLVersion = '1.5'
object TargetLabel: TLabel
AnchorSideLeft.Control = Owner
AnchorSideTop.Control = TargetComboBox
AnchorSideTop.Side = asrCenter
Left = 6
Height = 17
Top = 13
Width = 80
BorderSpacing.Around = 6
Caption = 'TargetLabel'
ParentColor = False
end
object TargetComboBox: TComboBox
AnchorSideLeft.Control = TargetLabel
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = Owner
AnchorSideRight.Control = Owner
AnchorSideRight.Side = asrBottom
Left = 92
Height = 31
Top = 6
Width = 557
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Around = 6
ItemHeight = 0
OnChange = TargetComboBoxChange
Style = csDropDownList
TabOrder = 0
end
object MainMemo: TMemo
AnchorSideTop.Control = TargetComboBox
AnchorSideTop.Side = asrBottom
Left = 6
Height = 350
Top = 43
Width = 643
Align = alBottom
Anchors = [akTop, akLeft, akRight, akBottom]
BorderSpacing.Around = 6
Lines.Strings = (
'MainMemo'
)
ReadOnly = True
ScrollBars = ssAutoBoth
TabOrder = 1
end
object ButtonPanel1: TButtonPanel
Left = 6
Height = 29
Top = 399
Width = 643
OKButton.Name = 'OKButton'
OKButton.DefaultCaption = True
HelpButton.Name = 'HelpButton'
HelpButton.DefaultCaption = True
CloseButton.Name = 'CloseButton'
CloseButton.DefaultCaption = True
CancelButton.Name = 'CancelButton'
CancelButton.DefaultCaption = True
TabOrder = 2
ShowButtons = [pbClose]
ShowBevel = False
end
end
|