_ Partial Class frmConfigService Inherits DevExpress.XtraEditors.XtraForm 'Das Formular überschreibt den Löschvorgang, um die Komponentenliste zu bereinigen. _ Protected Overrides Sub Dispose(ByVal disposing As Boolean) Try If disposing AndAlso components IsNot Nothing Then components.Dispose() End If Finally MyBase.Dispose(disposing) End Try End Sub 'Wird vom Windows Form-Designer benötigt. Private components As System.ComponentModel.IContainer 'Hinweis: Die folgende Prozedur ist für den Windows Form-Designer erforderlich. 'Das Bearbeiten ist mit dem Windows Form-Designer möglich. 'Das Bearbeiten mit dem Code-Editor ist nicht möglich. _ Private Sub InitializeComponent() Me.btnCancel = New System.Windows.Forms.Button() Me.btnTest = New System.Windows.Forms.Button() Me.Label1 = New System.Windows.Forms.Label() Me.Label2 = New System.Windows.Forms.Label() Me.Label3 = New System.Windows.Forms.Label() Me.lblStatus = New System.Windows.Forms.Label() Me.btnOK = New System.Windows.Forms.Button() Me.txtIPAddress = New DevExpress.XtraEditors.TextEdit() Me.txtPort = New DevExpress.XtraEditors.TextEdit() CType(Me.txtIPAddress.Properties, System.ComponentModel.ISupportInitialize).BeginInit() CType(Me.txtPort.Properties, System.ComponentModel.ISupportInitialize).BeginInit() Me.SuspendLayout() ' 'btnCancel ' Me.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel Me.btnCancel.Location = New System.Drawing.Point(338, 124) Me.btnCancel.Name = "btnCancel" Me.btnCancel.Size = New System.Drawing.Size(75, 23) Me.btnCancel.TabIndex = 1 Me.btnCancel.Text = "Cancel" Me.btnCancel.UseVisualStyleBackColor = True ' 'btnTest ' Me.btnTest.Location = New System.Drawing.Point(12, 124) Me.btnTest.Name = "btnTest" Me.btnTest.Size = New System.Drawing.Size(109, 23) Me.btnTest.TabIndex = 2 Me.btnTest.Text = "Verbindungstest" Me.btnTest.UseVisualStyleBackColor = True ' 'Label1 ' Me.Label1.AutoSize = True Me.Label1.Location = New System.Drawing.Point(12, 16) Me.Label1.Name = "Label1" Me.Label1.Size = New System.Drawing.Size(64, 13) Me.Label1.TabIndex = 3 Me.Label1.Text = "IP-Adresse:" ' 'Label2 ' Me.Label2.AutoSize = True Me.Label2.Location = New System.Drawing.Point(265, 16) Me.Label2.Name = "Label2" Me.Label2.Size = New System.Drawing.Size(31, 13) Me.Label2.TabIndex = 3 Me.Label2.Text = "Port:" ' 'Label3 ' Me.Label3.AutoSize = True Me.Label3.Location = New System.Drawing.Point(12, 55) Me.Label3.Name = "Label3" Me.Label3.Size = New System.Drawing.Size(42, 13) Me.Label3.TabIndex = 4 Me.Label3.Text = "Status:" ' 'lblStatus ' Me.lblStatus.Location = New System.Drawing.Point(12, 68) Me.lblStatus.Name = "lblStatus" Me.lblStatus.Size = New System.Drawing.Size(401, 53) Me.lblStatus.TabIndex = 4 Me.lblStatus.Text = "Nicht verbunden" ' 'btnOK ' Me.btnOK.Location = New System.Drawing.Point(257, 124) Me.btnOK.Name = "btnOK" Me.btnOK.Size = New System.Drawing.Size(75, 23) Me.btnOK.TabIndex = 1 Me.btnOK.Text = "OK" Me.btnOK.UseVisualStyleBackColor = True ' 'txtIPAddress ' Me.txtIPAddress.Location = New System.Drawing.Point(12, 32) Me.txtIPAddress.Name = "txtIPAddress" Me.txtIPAddress.Properties.Mask.EditMask = "\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}" Me.txtIPAddress.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx Me.txtIPAddress.Size = New System.Drawing.Size(250, 20) Me.txtIPAddress.TabIndex = 6 ' 'txtPort ' Me.txtPort.EditValue = "9000" Me.txtPort.Location = New System.Drawing.Point(268, 32) Me.txtPort.Name = "txtPort" Me.txtPort.Properties.Mask.EditMask = "n0" Me.txtPort.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric Me.txtPort.Size = New System.Drawing.Size(145, 20) Me.txtPort.TabIndex = 7 ' 'frmConfigService ' Me.AcceptButton = Me.btnOK Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!) Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font Me.CancelButton = Me.btnCancel Me.ClientSize = New System.Drawing.Size(425, 159) Me.Controls.Add(Me.txtPort) Me.Controls.Add(Me.txtIPAddress) Me.Controls.Add(Me.lblStatus) Me.Controls.Add(Me.Label3) Me.Controls.Add(Me.Label2) Me.Controls.Add(Me.Label1) Me.Controls.Add(Me.btnTest) Me.Controls.Add(Me.btnOK) Me.Controls.Add(Me.btnCancel) Me.MaximizeBox = False Me.MinimizeBox = False Me.Name = "frmConfigService" Me.Text = "Dienst Kommunikation konfigurieren" CType(Me.txtIPAddress.Properties, System.ComponentModel.ISupportInitialize).EndInit() CType(Me.txtPort.Properties, System.ComponentModel.ISupportInitialize).EndInit() Me.ResumeLayout(False) Me.PerformLayout() End Sub Friend WithEvents btnCancel As Button Friend WithEvents btnTest As Button Friend WithEvents Label1 As Label Friend WithEvents Label2 As Label Friend WithEvents Label3 As Label Friend WithEvents lblStatus As Label Friend WithEvents btnOK As Button Friend WithEvents txtIPAddress As DevExpress.XtraEditors.TextEdit Friend WithEvents txtPort As DevExpress.XtraEditors.TextEdit End Class