_ Partial Class frmBarcodeGenerator 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.TextBoxBarcode = New System.Windows.Forms.TextBox() Me.lbl = New System.Windows.Forms.Label() Me.btnGenBar = New System.Windows.Forms.Button() Me.pic = New System.Windows.Forms.PictureBox() Me.Button1 = New System.Windows.Forms.Button() CType(Me.pic, System.ComponentModel.ISupportInitialize).BeginInit() Me.SuspendLayout() ' 'TextBoxBarcode ' Me.TextBoxBarcode.Location = New System.Drawing.Point(160, 91) Me.TextBoxBarcode.Name = "TextBoxBarcode" Me.TextBoxBarcode.Size = New System.Drawing.Size(100, 20) Me.TextBoxBarcode.TabIndex = 0 Me.TextBoxBarcode.Text = "barcode" ' 'lbl ' Me.lbl.AutoSize = True Me.lbl.Location = New System.Drawing.Point(87, 97) Me.lbl.Name = "lbl" Me.lbl.Size = New System.Drawing.Size(50, 13) Me.lbl.TabIndex = 1 Me.lbl.Text = "Barcode:" ' 'btnGenBar ' Me.btnGenBar.Location = New System.Drawing.Point(267, 91) Me.btnGenBar.Name = "btnGenBar" Me.btnGenBar.Size = New System.Drawing.Size(75, 23) Me.btnGenBar.TabIndex = 2 Me.btnGenBar.Text = "GenBar" Me.btnGenBar.UseVisualStyleBackColor = True ' 'pic ' Me.pic.Location = New System.Drawing.Point(12, 170) Me.pic.Name = "pic" Me.pic.Size = New System.Drawing.Size(1082, 152) Me.pic.TabIndex = 3 Me.pic.TabStop = False ' 'Button1 ' Me.Button1.Location = New System.Drawing.Point(363, 97) Me.Button1.Name = "Button1" Me.Button1.Size = New System.Drawing.Size(75, 23) Me.Button1.TabIndex = 2 Me.Button1.Text = "GenBar" Me.Button1.UseVisualStyleBackColor = True ' 'frmBarcodeGenerator ' Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!) Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font Me.ClientSize = New System.Drawing.Size(1106, 444) Me.Controls.Add(Me.pic) Me.Controls.Add(Me.Button1) Me.Controls.Add(Me.btnGenBar) Me.Controls.Add(Me.lbl) Me.Controls.Add(Me.TextBoxBarcode) Me.Name = "frmBarcodeGenerator" Me.Text = "frmBarcodeGenerator" CType(Me.pic, System.ComponentModel.ISupportInitialize).EndInit() Me.ResumeLayout(False) Me.PerformLayout() End Sub Friend WithEvents TextBoxBarcode As System.Windows.Forms.TextBox Friend WithEvents lbl As System.Windows.Forms.Label Friend WithEvents btnGenBar As System.Windows.Forms.Button Friend WithEvents pic As System.Windows.Forms.PictureBox Friend WithEvents Button1 As System.Windows.Forms.Button End Class