_ _ Partial Class loginForm 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() Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(loginForm)) Me.LogoPictureBox = New System.Windows.Forms.PictureBox Me.UsernameLabel = New System.Windows.Forms.Label Me.PasswordLabel = New System.Windows.Forms.Label Me.txtUsername = New System.Windows.Forms.TextBox Me.txtPassword = New System.Windows.Forms.TextBox Me.btn_ok = New System.Windows.Forms.Button Me.btn_cancel = New System.Windows.Forms.Button Me.GroupBox1 = New System.Windows.Forms.GroupBox Me.Label1 = New System.Windows.Forms.Label CType(Me.LogoPictureBox, System.ComponentModel.ISupportInitialize).BeginInit() Me.GroupBox1.SuspendLayout() Me.SuspendLayout() ' 'LogoPictureBox ' Me.LogoPictureBox.Image = CType(resources.GetObject("LogoPictureBox.Image"), System.Drawing.Image) Me.LogoPictureBox.Location = New System.Drawing.Point(6, 9) Me.LogoPictureBox.Name = "LogoPictureBox" Me.LogoPictureBox.Size = New System.Drawing.Size(166, 144) Me.LogoPictureBox.TabIndex = 10 Me.LogoPictureBox.TabStop = False ' 'UsernameLabel ' Me.UsernameLabel.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) Me.UsernameLabel.Location = New System.Drawing.Point(176, 31) Me.UsernameLabel.Name = "UsernameLabel" Me.UsernameLabel.Size = New System.Drawing.Size(177, 23) Me.UsernameLabel.TabIndex = 9 Me.UsernameLabel.Text = "&User name" Me.UsernameLabel.TextAlign = System.Drawing.ContentAlignment.MiddleLeft ' 'PasswordLabel ' Me.PasswordLabel.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) Me.PasswordLabel.Location = New System.Drawing.Point(176, 88) Me.PasswordLabel.Name = "PasswordLabel" Me.PasswordLabel.Size = New System.Drawing.Size(177, 23) Me.PasswordLabel.TabIndex = 12 Me.PasswordLabel.Text = "&Password" Me.PasswordLabel.TextAlign = System.Drawing.ContentAlignment.MiddleLeft ' 'txtUsername ' Me.txtUsername.Font = New System.Drawing.Font("Microsoft Sans Serif", 11.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) Me.txtUsername.ForeColor = System.Drawing.Color.Red Me.txtUsername.Location = New System.Drawing.Point(178, 51) Me.txtUsername.Name = "txtUsername" Me.txtUsername.Size = New System.Drawing.Size(175, 24) Me.txtUsername.TabIndex = 11 ' 'txtPassword ' Me.txtPassword.Font = New System.Drawing.Font("Microsoft Sans Serif", 11.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) Me.txtPassword.ForeColor = System.Drawing.Color.Red Me.txtPassword.Location = New System.Drawing.Point(178, 108) Me.txtPassword.Name = "txtPassword" Me.txtPassword.PasswordChar = Global.Microsoft.VisualBasic.ChrW(42) Me.txtPassword.Size = New System.Drawing.Size(175, 24) Me.txtPassword.TabIndex = 13 ' 'btn_ok ' Me.btn_ok.BackColor = System.Drawing.Color.Transparent Me.btn_ok.BackgroundImage = CType(resources.GetObject("btn_ok.BackgroundImage"), System.Drawing.Image) Me.btn_ok.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch Me.btn_ok.FlatAppearance.BorderSize = 0 Me.btn_ok.FlatStyle = System.Windows.Forms.FlatStyle.Flat Me.btn_ok.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) Me.btn_ok.ForeColor = System.Drawing.Color.White Me.btn_ok.Image = CType(resources.GetObject("btn_ok.Image"), System.Drawing.Image) Me.btn_ok.Location = New System.Drawing.Point(69, 165) Me.btn_ok.Margin = New System.Windows.Forms.Padding(0) Me.btn_ok.Name = "btn_ok" Me.btn_ok.Size = New System.Drawing.Size(115, 36) Me.btn_ok.TabIndex = 14 Me.btn_ok.Text = " &Ok" Me.btn_ok.TextAlign = System.Drawing.ContentAlignment.MiddleRight Me.btn_ok.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText Me.btn_ok.UseVisualStyleBackColor = True ' 'btn_cancel ' Me.btn_cancel.BackColor = System.Drawing.Color.Transparent Me.btn_cancel.BackgroundImage = CType(resources.GetObject("btn_cancel.BackgroundImage"), System.Drawing.Image) Me.btn_cancel.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch Me.btn_cancel.FlatAppearance.BorderSize = 0 Me.btn_cancel.FlatStyle = System.Windows.Forms.FlatStyle.Flat Me.btn_cancel.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) Me.btn_cancel.ForeColor = System.Drawing.Color.White Me.btn_cancel.Image = CType(resources.GetObject("btn_cancel.Image"), System.Drawing.Image) Me.btn_cancel.Location = New System.Drawing.Point(193, 164) Me.btn_cancel.Margin = New System.Windows.Forms.Padding(0) Me.btn_cancel.Name = "btn_cancel" Me.btn_cancel.Size = New System.Drawing.Size(115, 36) Me.btn_cancel.TabIndex = 15 Me.btn_cancel.Text = " &Cancel" Me.btn_cancel.TextAlign = System.Drawing.ContentAlignment.MiddleRight Me.btn_cancel.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText Me.btn_cancel.UseVisualStyleBackColor = True ' 'GroupBox1 ' Me.GroupBox1.Controls.Add(Me.Label1) Me.GroupBox1.Controls.Add(Me.btn_cancel) Me.GroupBox1.Controls.Add(Me.btn_ok) Me.GroupBox1.Controls.Add(Me.txtPassword) Me.GroupBox1.Controls.Add(Me.txtUsername) Me.GroupBox1.Controls.Add(Me.PasswordLabel) Me.GroupBox1.Controls.Add(Me.UsernameLabel) Me.GroupBox1.Controls.Add(Me.LogoPictureBox) Me.GroupBox1.Location = New System.Drawing.Point(0, -4) Me.GroupBox1.Name = "GroupBox1" Me.GroupBox1.Size = New System.Drawing.Size(360, 215) Me.GroupBox1.TabIndex = 9 Me.GroupBox1.TabStop = False ' 'Label1 ' Me.Label1.AutoSize = True Me.Label1.Font = New System.Drawing.Font("Microsoft Sans Serif", 11.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) Me.Label1.Location = New System.Drawing.Point(176, 13) Me.Label1.Name = "Label1" Me.Label1.Size = New System.Drawing.Size(0, 18) Me.Label1.TabIndex = 16 ' 'loginForm ' Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!) Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font Me.ClientSize = New System.Drawing.Size(363, 214) Me.ControlBox = False Me.Controls.Add(Me.GroupBox1) Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle Me.MaximizeBox = False Me.MinimizeBox = False Me.Name = "loginForm" Me.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen Me.Text = "System Login" CType(Me.LogoPictureBox, System.ComponentModel.ISupportInitialize).EndInit() Me.GroupBox1.ResumeLayout(False) Me.GroupBox1.PerformLayout() Me.ResumeLayout(False) End Sub Friend WithEvents LogoPictureBox As System.Windows.Forms.PictureBox Friend WithEvents UsernameLabel As System.Windows.Forms.Label Friend WithEvents PasswordLabel As System.Windows.Forms.Label Friend WithEvents txtUsername As System.Windows.Forms.TextBox Friend WithEvents txtPassword As System.Windows.Forms.TextBox Friend WithEvents btn_ok As System.Windows.Forms.Button Friend WithEvents btn_cancel As System.Windows.Forms.Button Friend WithEvents GroupBox1 As System.Windows.Forms.GroupBox Friend WithEvents Label1 As System.Windows.Forms.Label End Class