_ Partial Class frmServiceConfig 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.txtIPAddress = New System.Windows.Forms.TextBox() Me.btnCancel = New System.Windows.Forms.Button() Me.btnTest = New System.Windows.Forms.Button() Me.txtPort = New System.Windows.Forms.TextBox() 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.lblURL = New System.Windows.Forms.TextBox() Me.SuspendLayout() ' 'txtIPAddress ' Me.txtIPAddress.Location = New System.Drawing.Point(12, 32) Me.txtIPAddress.Name = "txtIPAddress" Me.txtIPAddress.Size = New System.Drawing.Size(250, 21) Me.txtIPAddress.TabIndex = 0 ' '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(223, 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 ' 'txtPort ' Me.txtPort.Location = New System.Drawing.Point(268, 32) Me.txtPort.Name = "txtPort" Me.txtPort.Size = New System.Drawing.Size(145, 21) Me.txtPort.TabIndex = 0 Me.txtPort.Text = "9000" ' '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(9, 83) Me.Label3.Name = "Label3" Me.Label3.Size = New System.Drawing.Size(42, 13) Me.Label3.TabIndex = 4 Me.Label3.Text = "Status:" ' 'lblStatus ' Me.lblStatus.AutoSize = True Me.lblStatus.Location = New System.Drawing.Point(9, 96) Me.lblStatus.Name = "lblStatus" Me.lblStatus.Size = New System.Drawing.Size(86, 13) Me.lblStatus.TabIndex = 4 Me.lblStatus.Text = "Nicht verbunden" ' 'lblURL ' Me.lblURL.Location = New System.Drawing.Point(12, 59) Me.lblURL.Name = "lblURL" Me.lblURL.ReadOnly = True Me.lblURL.Size = New System.Drawing.Size(401, 21) Me.lblURL.TabIndex = 0 ' 'frmServiceConfig ' Me.AcceptButton = Me.btnTest 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.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.btnCancel) Me.Controls.Add(Me.txtPort) Me.Controls.Add(Me.lblURL) Me.Controls.Add(Me.txtIPAddress) Me.Name = "frmServiceConfig" Me.Text = "Dienst Kommunikation konfigurieren" Me.ResumeLayout(False) Me.PerformLayout() End Sub Friend WithEvents txtIPAddress As TextBox Friend WithEvents btnCancel As Button Friend WithEvents btnTest As Button Friend WithEvents txtPort As TextBox Friend WithEvents Label1 As Label Friend WithEvents Label2 As Label Friend WithEvents Label3 As Label Friend WithEvents lblStatus As Label Friend WithEvents lblURL As TextBox End Class