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 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125
|
object RepositoryDetailsFrm: TRepositoryDetailsFrm
Left = 389
Height = 315
Top = 243
Width = 398
Anchors = [akTop, akLeft, akBottom]
Caption = 'Repository details'
ClientHeight = 315
ClientWidth = 398
Constraints.MinHeight = 315
Constraints.MinWidth = 300
OnCreate = FormCreate
PopupMode = pmExplicit
Position = poOwnerFormCenter
LCLVersion = '1.9.0.0'
object pnButtons: TPanel
Left = 0
Height = 35
Top = 280
Width = 398
Align = alBottom
BevelOuter = bvNone
ClientHeight = 35
ClientWidth = 398
TabOrder = 3
object bOk: TButton
Left = 228
Height = 25
Top = 4
Width = 75
Anchors = [akTop, akRight]
Caption = 'Ok'
OnClick = bOkClick
ParentShowHint = False
ShowHint = True
TabOrder = 0
end
object bCancel: TButton
Left = 305
Height = 25
Top = 4
Width = 75
Anchors = [akTop, akRight]
Caption = 'Cancel'
ModalResult = 2
ParentShowHint = False
ShowHint = True
TabOrder = 1
end
end
object lbName: TLabel
Left = 19
Height = 21
Top = 13
Width = 108
Caption = 'Repository name'
ParentColor = False
end
object edName: TEdit
Left = 19
Height = 31
Top = 31
Width = 357
Anchors = [akTop, akLeft, akRight]
ParentShowHint = False
ShowHint = True
TabOrder = 0
end
object lbAddress: TLabel
Left = 19
Height = 21
Top = 69
Width = 125
Caption = 'Repository address'
ParentColor = False
end
object edAddress: TEdit
Left = 18
Height = 31
Top = 87
Width = 358
Anchors = [akTop, akLeft, akRight]
OnChange = edAddressChange
ParentShowHint = False
ShowHint = True
TabOrder = 1
end
object lbDescription: TLabel
Left = 19
Height = 21
Top = 130
Width = 146
Caption = 'Repository description'
ParentColor = False
end
object mDescription: TMemo
Left = 19
Height = 108
Top = 148
Width = 357
Anchors = [akTop, akLeft, akRight, akBottom]
ParentShowHint = False
ShowHint = True
TabOrder = 2
end
object lbOF2: TLabel
Left = 377
Height = 21
Top = 36
Width = 8
Anchors = [akTop, akRight]
Caption = '*'
Font.Color = clRed
Font.Style = [fsBold]
ParentColor = False
ParentFont = False
end
object SDRep: TSaveDialog
DefaultExt = '.opmrep'
Filter = '*.opmrep|*.opmrep'
Options = [ofOverwritePrompt, ofEnableSizing, ofViewDetail]
left = 16
top = 264
end
end
|