_ Partial Class Settings 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_KB = New System.Windows.Forms.Button() Me.Button_FilePath = New System.Windows.Forms.Button() Me.Label_Name = New System.Windows.Forms.Label() Me.TextBox_Name = New System.Windows.Forms.TextBox() Me.Label_UserData = New System.Windows.Forms.Label() Me.TextBox_Phone = New System.Windows.Forms.TextBox() Me.Label_Tel = New System.Windows.Forms.Label() Me.TextBox_Mail = New System.Windows.Forms.TextBox() Me.Label_Mail = New System.Windows.Forms.Label() Me.Button_Save = New System.Windows.Forms.Button() Me.SuspendLayout() ' 'Button_KB ' Me.Button_KB.Location = New System.Drawing.Point(639, 133) Me.Button_KB.Name = "Button_KB" Me.Button_KB.Size = New System.Drawing.Size(160, 68) Me.Button_KB.TabIndex = 0 Me.Button_KB.Text = "Update Knowledge Base" Me.Button_KB.UseVisualStyleBackColor = True ' 'Button_FilePath ' Me.Button_FilePath.Location = New System.Drawing.Point(639, 283) Me.Button_FilePath.Name = "Button_FilePath" Me.Button_FilePath.Size = New System.Drawing.Size(160, 68) Me.Button_FilePath.TabIndex = 1 Me.Button_FilePath.Text = "Update File Path" Me.Button_FilePath.UseVisualStyleBackColor = True ' 'Label_Name ' Me.Label_Name.AutoSize = True Me.Label_Name.Location = New System.Drawing.Point(113, 203) Me.Label_Name.Name = "Label_Name" Me.Label_Name.Size = New System.Drawing.Size(38, 13) Me.Label_Name.TabIndex = 2 Me.Label_Name.Text = "Name:" ' 'TextBox_Name ' Me.TextBox_Name.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) Me.TextBox_Name.Location = New System.Drawing.Point(200, 200) Me.TextBox_Name.Name = "TextBox_Name" Me.TextBox_Name.Size = New System.Drawing.Size(171, 21) Me.TextBox_Name.TabIndex = 3 ' 'Label_UserData ' Me.Label_UserData.AutoSize = True Me.Label_UserData.Font = New System.Drawing.Font("Microsoft Sans Serif", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) Me.Label_UserData.Location = New System.Drawing.Point(112, 156) Me.Label_UserData.Name = "Label_UserData" Me.Label_UserData.Size = New System.Drawing.Size(181, 20) Me.Label_UserData.TabIndex = 4 Me.Label_UserData.Text = "Sales Representative" ' 'TextBox_Phone ' Me.TextBox_Phone.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) Me.TextBox_Phone.Location = New System.Drawing.Point(200, 241) Me.TextBox_Phone.Name = "TextBox_Phone" Me.TextBox_Phone.Size = New System.Drawing.Size(171, 21) Me.TextBox_Phone.TabIndex = 6 ' 'Label_Tel ' Me.Label_Tel.AutoSize = True Me.Label_Tel.Location = New System.Drawing.Point(113, 244) Me.Label_Tel.Name = "Label_Tel" Me.Label_Tel.Size = New System.Drawing.Size(81, 13) Me.Label_Tel.TabIndex = 5 Me.Label_Tel.Text = "Phone Number:" ' 'TextBox_Mail ' Me.TextBox_Mail.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) Me.TextBox_Mail.Location = New System.Drawing.Point(200, 283) Me.TextBox_Mail.Name = "TextBox_Mail" Me.TextBox_Mail.Size = New System.Drawing.Size(171, 21) Me.TextBox_Mail.TabIndex = 8 ' 'Label_Mail ' Me.Label_Mail.AutoSize = True Me.Label_Mail.Location = New System.Drawing.Point(113, 286) Me.Label_Mail.Name = "Label_Mail" Me.Label_Mail.Size = New System.Drawing.Size(29, 13) Me.Label_Mail.TabIndex = 7 Me.Label_Mail.Text = "Mail:" ' 'Button_Save ' Me.Button_Save.Location = New System.Drawing.Point(858, 533) Me.Button_Save.Name = "Button_Save" Me.Button_Save.Size = New System.Drawing.Size(99, 54) Me.Button_Save.TabIndex = 9 Me.Button_Save.Text = "Save" Me.Button_Save.UseVisualStyleBackColor = True ' 'Settings ' Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!) Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font Me.ClientSize = New System.Drawing.Size(1046, 627) Me.Controls.Add(Me.Button_Save) Me.Controls.Add(Me.TextBox_Mail) Me.Controls.Add(Me.Label_Mail) Me.Controls.Add(Me.TextBox_Phone) Me.Controls.Add(Me.Label_Tel) Me.Controls.Add(Me.Label_UserData) Me.Controls.Add(Me.TextBox_Name) Me.Controls.Add(Me.Label_Name) Me.Controls.Add(Me.Button_FilePath) Me.Controls.Add(Me.Button_KB) Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None Me.Name = "Settings" Me.Text = "Settings" Me.ResumeLayout(False) Me.PerformLayout() End Sub Friend WithEvents Button_KB As Button Friend WithEvents Button_FilePath As Button Friend WithEvents Label_Name As Label Friend WithEvents TextBox_Name As TextBox Friend WithEvents Label_UserData As Label Friend WithEvents TextBox_Phone As TextBox Friend WithEvents Label_Tel As Label Friend WithEvents TextBox_Mail As TextBox Friend WithEvents Label_Mail As Label Friend WithEvents Button_Save As Button End Class