Componentes.Terceros.MyDAC/5.80.0.50/1/Lib/D11/MyConnectForm.dfm

157 lines
3.2 KiB
Plaintext

object MyConnectForm: TMyConnectForm
Left = 368
Top = 255
ActiveControl = edUsername
BorderIcons = []
BorderStyle = bsDialog
Caption = 'Connect'
ClientHeight = 243
ClientWidth = 291
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
OldCreateOrder = True
Position = poScreenCenter
Scaled = False
PixelsPerInch = 96
TextHeight = 13
object Panel: TPanel
Left = 8
Top = 8
Width = 273
Height = 189
Anchors = [akLeft, akTop, akBottom]
BevelInner = bvRaised
BevelOuter = bvLowered
FullRepaint = False
TabOrder = 0
object lbUsername: TLabel
Left = 16
Top = 20
Width = 73
Height = 13
AutoSize = False
Caption = 'Username'
Layout = tlCenter
end
object lbPassword: TLabel
Left = 16
Top = 54
Width = 73
Height = 13
AutoSize = False
Caption = 'Password'
Layout = tlCenter
end
object lbServer: TLabel
Left = 16
Top = 88
Width = 73
Height = 13
AutoSize = False
Caption = 'Server'
Layout = tlCenter
end
object lbPort: TLabel
Left = 16
Top = 122
Width = 73
Height = 13
AutoSize = False
Caption = 'Port'
Layout = tlCenter
end
object lbDatabase: TLabel
Left = 16
Top = 156
Width = 73
Height = 13
AutoSize = False
Caption = 'Database'
Layout = tlCenter
end
object edUsername: TEdit
Left = 104
Top = 16
Width = 153
Height = 21
AutoSelect = False
MaxLength = 32767
TabOrder = 0
OnExit = edExit
end
object edPassword: TEdit
Left = 104
Top = 50
Width = 153
Height = 21
AutoSelect = False
MaxLength = 32767
PasswordChar = '*'
TabOrder = 1
OnExit = edExit
end
object edServer: TComboBox
Left = 104
Top = 84
Width = 153
Height = 21
DropDownCount = 10
ItemHeight = 13
TabOrder = 2
OnDropDown = edServerDropDown
OnExit = edExit
end
object edPort: TEdit
Left = 104
Top = 118
Width = 153
Height = 21
TabOrder = 3
OnExit = edExit
end
object edDatabase: TComboBox
Left = 104
Top = 152
Width = 153
Height = 21
DropDownCount = 10
ItemHeight = 13
TabOrder = 4
OnDropDown = edDatabaseDropDown
OnExit = edExit
end
end
object btConnect: TButton
Left = 52
Top = 209
Width = 89
Height = 25
Anchors = [akLeft, akBottom]
Caption = 'Connect'
Default = True
TabOrder = 1
OnClick = btConnectClick
end
object btCancel: TButton
Left = 148
Top = 209
Width = 89
Height = 25
Anchors = [akLeft, akBottom]
Cancel = True
Caption = 'Cancel'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
ModalResult = 2
ParentFont = False
TabOrder = 2
end
end