_ Partial Class frmMain 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() Me.GridControlLogs = New DevExpress.XtraGrid.GridControl() Me.GridView1 = New DevExpress.XtraGrid.Views.Grid.GridView() Me.btnRefresh = New System.Windows.Forms.Button() Me.Button1 = New System.Windows.Forms.Button() Me.TextBox1 = New System.Windows.Forms.TextBox() Me.Label1 = New System.Windows.Forms.Label() Me.Button2 = New System.Windows.Forms.Button() CType(Me.GridControlLogs, System.ComponentModel.ISupportInitialize).BeginInit() CType(Me.GridView1, System.ComponentModel.ISupportInitialize).BeginInit() Me.SuspendLayout() ' 'GridControlLogs ' Me.GridControlLogs.Dock = System.Windows.Forms.DockStyle.Right Me.GridControlLogs.Location = New System.Drawing.Point(251, 0) Me.GridControlLogs.MainView = Me.GridView1 Me.GridControlLogs.Name = "GridControlLogs" Me.GridControlLogs.Size = New System.Drawing.Size(888, 679) Me.GridControlLogs.TabIndex = 0 Me.GridControlLogs.ViewCollection.AddRange(New DevExpress.XtraGrid.Views.Base.BaseView() {Me.GridView1}) ' 'GridView1 ' Me.GridView1.GridControl = Me.GridControlLogs Me.GridView1.Name = "GridView1" ' 'btnRefresh ' Me.btnRefresh.Location = New System.Drawing.Point(12, 12) Me.btnRefresh.Name = "btnRefresh" Me.btnRefresh.Size = New System.Drawing.Size(233, 35) Me.btnRefresh.TabIndex = 1 Me.btnRefresh.Text = "Refresh Logs" Me.btnRefresh.UseVisualStyleBackColor = True ' 'Button1 ' Me.Button1.Location = New System.Drawing.Point(12, 53) Me.Button1.Name = "Button1" Me.Button1.Size = New System.Drawing.Size(233, 32) Me.Button1.TabIndex = 2 Me.Button1.Text = "Read Config" Me.Button1.UseVisualStyleBackColor = True ' 'TextBox1 ' Me.TextBox1.Location = New System.Drawing.Point(12, 143) Me.TextBox1.Name = "TextBox1" Me.TextBox1.Size = New System.Drawing.Size(233, 20) Me.TextBox1.TabIndex = 3 ' 'Label1 ' Me.Label1.AutoSize = True Me.Label1.Location = New System.Drawing.Point(9, 127) Me.Label1.Name = "Label1" Me.Label1.Size = New System.Drawing.Size(109, 13) Me.Label1.TabIndex = 4 Me.Label1.Text = "Value of Test-Setting:" ' 'Button2 ' Me.Button2.Location = New System.Drawing.Point(12, 91) Me.Button2.Name = "Button2" Me.Button2.Size = New System.Drawing.Size(233, 33) Me.Button2.TabIndex = 5 Me.Button2.Text = "Save Config" Me.Button2.UseVisualStyleBackColor = True ' 'frmMain ' Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!) Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font Me.ClientSize = New System.Drawing.Size(1139, 679) Me.Controls.Add(Me.Button2) Me.Controls.Add(Me.Label1) Me.Controls.Add(Me.TextBox1) Me.Controls.Add(Me.Button1) Me.Controls.Add(Me.btnRefresh) Me.Controls.Add(Me.GridControlLogs) Me.MinimumSize = New System.Drawing.Size(1155, 718) Me.Name = "frmMain" Me.Text = "Digital Data Diagnose" CType(Me.GridControlLogs, System.ComponentModel.ISupportInitialize).EndInit() CType(Me.GridView1, System.ComponentModel.ISupportInitialize).EndInit() Me.ResumeLayout(False) Me.PerformLayout() End Sub Friend WithEvents GridControlLogs As DevExpress.XtraGrid.GridControl Friend WithEvents GridView1 As DevExpress.XtraGrid.Views.Grid.GridView Friend WithEvents btnRefresh As Button Friend WithEvents Button1 As Button Friend WithEvents TextBox1 As TextBox Friend WithEvents Label1 As Label Friend WithEvents Button2 As Button End Class