_ Partial Class Main_Menu Inherits System.Windows.Forms.Form 'Form overrides dispose to clean up the component list. _ 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 'Required by the Windows Form Designer Private components As System.ComponentModel.IContainer 'NOTE: The following procedure is required by the Windows Form Designer 'It can be modified using the Windows Form Designer. 'Do not modify it using the code editor. _ Private Sub InitializeComponent() Me.Button_Settings = New System.Windows.Forms.Button() Me.Button_Multiple = New System.Windows.Forms.Button() Me.Button_Individual = New System.Windows.Forms.Button() Me.Button_FilePath = New System.Windows.Forms.Button() Me.Button_Order = New System.Windows.Forms.Button() Me.Label_FilePathError = New System.Windows.Forms.Label() Me.SuspendLayout() ' 'Button_Settings ' Me.Button_Settings.Location = New System.Drawing.Point(91, 73) Me.Button_Settings.Margin = New System.Windows.Forms.Padding(3, 2, 3, 2) Me.Button_Settings.Name = "Button_Settings" Me.Button_Settings.Size = New System.Drawing.Size(169, 50) Me.Button_Settings.TabIndex = 5 Me.Button_Settings.Text = "Settings" Me.Button_Settings.UseVisualStyleBackColor = True ' 'Button_Multiple ' Me.Button_Multiple.Enabled = False Me.Button_Multiple.Location = New System.Drawing.Point(979, 540) Me.Button_Multiple.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4) Me.Button_Multiple.Name = "Button_Multiple" Me.Button_Multiple.Size = New System.Drawing.Size(156, 114) Me.Button_Multiple.TabIndex = 4 Me.Button_Multiple.Text = "Multiple" Me.Button_Multiple.UseVisualStyleBackColor = True ' 'Button_Individual ' Me.Button_Individual.Enabled = False Me.Button_Individual.Location = New System.Drawing.Point(979, 372) Me.Button_Individual.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4) Me.Button_Individual.Name = "Button_Individual" Me.Button_Individual.Size = New System.Drawing.Size(156, 114) Me.Button_Individual.TabIndex = 3 Me.Button_Individual.Text = "Individual" Me.Button_Individual.UseVisualStyleBackColor = True ' 'Button_FilePath ' Me.Button_FilePath.Location = New System.Drawing.Point(320, 73) Me.Button_FilePath.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4) Me.Button_FilePath.Name = "Button_FilePath" Me.Button_FilePath.Size = New System.Drawing.Size(164, 50) Me.Button_FilePath.TabIndex = 6 Me.Button_FilePath.Text = "File path" Me.Button_FilePath.UseVisualStyleBackColor = True ' 'Button_Order ' Me.Button_Order.Enabled = False Me.Button_Order.Location = New System.Drawing.Point(259, 434) Me.Button_Order.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4) Me.Button_Order.Name = "Button_Order" Me.Button_Order.Size = New System.Drawing.Size(156, 80) Me.Button_Order.TabIndex = 7 Me.Button_Order.Text = "Create Order" Me.Button_Order.UseVisualStyleBackColor = True ' 'Label_FilePathError ' Me.Label_FilePathError.AutoSize = True Me.Label_FilePathError.Font = New System.Drawing.Font("Microsoft Sans Serif", 10.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) Me.Label_FilePathError.ForeColor = System.Drawing.Color.Red Me.Label_FilePathError.Location = New System.Drawing.Point(504, 87) Me.Label_FilePathError.Name = "Label_FilePathError" Me.Label_FilePathError.Size = New System.Drawing.Size(184, 20) Me.Label_FilePathError.TabIndex = 8 Me.Label_FilePathError.Text = "Please update file path!" ' 'Main_Menu ' Me.AutoScaleDimensions = New System.Drawing.SizeF(8.0!, 16.0!) Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font Me.ClientSize = New System.Drawing.Size(1395, 772) Me.Controls.Add(Me.Label_FilePathError) Me.Controls.Add(Me.Button_Order) Me.Controls.Add(Me.Button_FilePath) Me.Controls.Add(Me.Button_Settings) Me.Controls.Add(Me.Button_Multiple) Me.Controls.Add(Me.Button_Individual) Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None Me.Margin = New System.Windows.Forms.Padding(3, 2, 3, 2) Me.Name = "Main_Menu" Me.Text = "Main_Menu" Me.ResumeLayout(False) Me.PerformLayout() End Sub Friend WithEvents Button_Settings As Button Friend WithEvents Button_Multiple As Button Friend WithEvents Button_Individual As Button Friend WithEvents Button_FilePath As Button Friend WithEvents Button_Order As Button Friend WithEvents Label_FilePathError As Label End Class