_ Partial Class NetzwerkAdmin Inherits System.Windows.Forms.Form '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() Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(NetzwerkAdmin)) Me.CmdStandortAdd = New System.Windows.Forms.Button() Me.CmdNetzwerkAdd = New System.Windows.Forms.Button() Me.LstNetzwerk = New System.Windows.Forms.ListBox() Me.LstStandort = New System.Windows.Forms.ListBox() Me.ChkDelete = New System.Windows.Forms.CheckBox() Me.CmdNetWDelete = New System.Windows.Forms.Button() Me.CmdStandortDelete = New System.Windows.Forms.Button() Me.SuspendLayout() ' 'CmdStandortAdd ' Me.CmdStandortAdd.BackColor = System.Drawing.SystemColors.ControlLightLight Me.CmdStandortAdd.FlatStyle = System.Windows.Forms.FlatStyle.Flat Me.CmdStandortAdd.Location = New System.Drawing.Point(185, 12) Me.CmdStandortAdd.Name = "CmdStandortAdd" Me.CmdStandortAdd.Size = New System.Drawing.Size(174, 33) Me.CmdStandortAdd.TabIndex = 0 Me.CmdStandortAdd.Text = "Standort hinzufügen" Me.CmdStandortAdd.UseVisualStyleBackColor = False ' 'CmdNetzwerkAdd ' Me.CmdNetzwerkAdd.BackColor = System.Drawing.SystemColors.ControlLightLight Me.CmdNetzwerkAdd.FlatStyle = System.Windows.Forms.FlatStyle.Flat Me.CmdNetzwerkAdd.Location = New System.Drawing.Point(185, 113) Me.CmdNetzwerkAdd.Name = "CmdNetzwerkAdd" Me.CmdNetzwerkAdd.Size = New System.Drawing.Size(174, 33) Me.CmdNetzwerkAdd.TabIndex = 1 Me.CmdNetzwerkAdd.Text = "Netzwerk hinzufügen" Me.CmdNetzwerkAdd.UseVisualStyleBackColor = False ' 'LstNetzwerk ' Me.LstNetzwerk.FormattingEnabled = True Me.LstNetzwerk.Location = New System.Drawing.Point(12, 113) Me.LstNetzwerk.Name = "LstNetzwerk" Me.LstNetzwerk.Size = New System.Drawing.Size(151, 95) Me.LstNetzwerk.TabIndex = 3 ' 'LstStandort ' Me.LstStandort.FormattingEnabled = True Me.LstStandort.Location = New System.Drawing.Point(12, 12) Me.LstStandort.Name = "LstStandort" Me.LstStandort.Size = New System.Drawing.Size(151, 95) Me.LstStandort.TabIndex = 2 ' 'ChkDelete ' Me.ChkDelete.AutoSize = True Me.ChkDelete.Location = New System.Drawing.Point(12, 214) Me.ChkDelete.Name = "ChkDelete" Me.ChkDelete.Size = New System.Drawing.Size(116, 17) Me.ChkDelete.TabIndex = 4 Me.ChkDelete.Text = "Löschen aktivieren" Me.ChkDelete.UseVisualStyleBackColor = True ' 'CmdNetWDelete ' Me.CmdNetWDelete.BackColor = System.Drawing.SystemColors.ControlLightLight Me.CmdNetWDelete.Enabled = False Me.CmdNetWDelete.FlatStyle = System.Windows.Forms.FlatStyle.Flat Me.CmdNetWDelete.Location = New System.Drawing.Point(185, 152) Me.CmdNetWDelete.Name = "CmdNetWDelete" Me.CmdNetWDelete.Size = New System.Drawing.Size(174, 33) Me.CmdNetWDelete.TabIndex = 6 Me.CmdNetWDelete.Text = "Netzwerk löschen" Me.CmdNetWDelete.UseVisualStyleBackColor = False ' 'CmdStandortDelete ' Me.CmdStandortDelete.BackColor = System.Drawing.SystemColors.ControlLightLight Me.CmdStandortDelete.Enabled = False Me.CmdStandortDelete.FlatStyle = System.Windows.Forms.FlatStyle.Flat Me.CmdStandortDelete.Location = New System.Drawing.Point(185, 51) Me.CmdStandortDelete.Name = "CmdStandortDelete" Me.CmdStandortDelete.Size = New System.Drawing.Size(174, 33) Me.CmdStandortDelete.TabIndex = 5 Me.CmdStandortDelete.Text = "Standort löschen" Me.CmdStandortDelete.UseVisualStyleBackColor = False ' 'NetzwerkAdmin ' Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!) Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font Me.BackColor = System.Drawing.SystemColors.GradientInactiveCaption Me.ClientSize = New System.Drawing.Size(377, 251) Me.Controls.Add(Me.CmdNetWDelete) Me.Controls.Add(Me.CmdStandortDelete) Me.Controls.Add(Me.ChkDelete) Me.Controls.Add(Me.LstNetzwerk) Me.Controls.Add(Me.LstStandort) Me.Controls.Add(Me.CmdNetzwerkAdd) Me.Controls.Add(Me.CmdStandortAdd) Me.Icon = CType(resources.GetObject("$this.Icon"), System.Drawing.Icon) Me.Name = "NetzwerkAdmin" Me.Text = "NetzwerkAdmin" Me.ResumeLayout(False) Me.PerformLayout() End Sub Friend WithEvents CmdStandortAdd As Button Friend WithEvents CmdNetzwerkAdd As Button Friend WithEvents LstNetzwerk As ListBox Friend WithEvents LstStandort As ListBox Friend WithEvents ChkDelete As CheckBox Friend WithEvents CmdNetWDelete As Button Friend WithEvents CmdStandortDelete As Button End Class