Imports DigitalData.GUIs.ClientSuite.Base Partial Class frmDocTest Inherits BaseForm '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.GridControl1 = New DevExpress.XtraGrid.GridControl() Me.GridView1 = New DevExpress.XtraGrid.Views.Grid.GridView() Me.txtDoctype = New System.Windows.Forms.TextBox() Me.Button1 = New System.Windows.Forms.Button() Me.txtDocId = New System.Windows.Forms.TextBox() Me.Label1 = New System.Windows.Forms.Label() Me.Label2 = New System.Windows.Forms.Label() CType(Me.GridControl1, System.ComponentModel.ISupportInitialize).BeginInit() CType(Me.GridView1, System.ComponentModel.ISupportInitialize).BeginInit() Me.SuspendLayout() ' 'GridControl1 ' Me.GridControl1.Dock = System.Windows.Forms.DockStyle.Top Me.GridControl1.Location = New System.Drawing.Point(0, 0) Me.GridControl1.MainView = Me.GridView1 Me.GridControl1.Name = "GridControl1" Me.GridControl1.Size = New System.Drawing.Size(800, 267) Me.GridControl1.TabIndex = 0 Me.GridControl1.ViewCollection.AddRange(New DevExpress.XtraGrid.Views.Base.BaseView() {Me.GridView1}) ' 'GridView1 ' Me.GridView1.GridControl = Me.GridControl1 Me.GridView1.Name = "GridView1" ' 'txtDoctype ' Me.txtDoctype.Location = New System.Drawing.Point(100, 299) Me.txtDoctype.Name = "txtDoctype" Me.txtDoctype.Size = New System.Drawing.Size(100, 20) Me.txtDoctype.TabIndex = 1 ' 'Button1 ' Me.Button1.Location = New System.Drawing.Point(652, 511) Me.Button1.Name = "Button1" Me.Button1.Size = New System.Drawing.Size(136, 56) Me.Button1.TabIndex = 2 Me.Button1.Text = "Speichern" Me.Button1.UseVisualStyleBackColor = True ' 'TextBox1 ' Me.txtDocId.Location = New System.Drawing.Point(100, 273) Me.txtDocId.Name = "TextBox1" Me.txtDocId.Size = New System.Drawing.Size(100, 20) Me.txtDocId.TabIndex = 3 ' 'Label1 ' Me.Label1.AutoSize = True Me.Label1.Location = New System.Drawing.Point(12, 302) Me.Label1.Name = "Label1" Me.Label1.Size = New System.Drawing.Size(47, 13) Me.Label1.TabIndex = 4 Me.Label1.Text = "Doctype" ' 'Label2 ' Me.Label2.AutoSize = True Me.Label2.Location = New System.Drawing.Point(12, 276) Me.Label2.Name = "Label2" Me.Label2.Size = New System.Drawing.Size(36, 13) Me.Label2.TabIndex = 4 Me.Label2.Text = "DocId" ' 'frmDocTest ' Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!) Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font Me.ClientSize = New System.Drawing.Size(800, 579) Me.Controls.Add(Me.Label2) Me.Controls.Add(Me.Label1) Me.Controls.Add(Me.txtDocId) Me.Controls.Add(Me.Button1) Me.Controls.Add(Me.txtDoctype) Me.Controls.Add(Me.GridControl1) Me.Name = "frmDocTest" Me.Text = "DocValue Test" CType(Me.GridControl1, System.ComponentModel.ISupportInitialize).EndInit() CType(Me.GridView1, System.ComponentModel.ISupportInitialize).EndInit() Me.ResumeLayout(False) Me.PerformLayout() End Sub Friend WithEvents GridControl1 As DevExpress.XtraGrid.GridControl Friend WithEvents GridView1 As DevExpress.XtraGrid.Views.Grid.GridView Friend WithEvents txtDoctype As TextBox Friend WithEvents Button1 As Button Friend WithEvents txtDocId As TextBox Friend WithEvents Label1 As Label Friend WithEvents Label2 As Label End Class