_ Partial Class EmployeePickerUserControl Inherits System.Windows.Forms.UserControl 'UserControl 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.EmployeesComboBox = New System.Windows.Forms.ComboBox() Me.PictureBox1 = New System.Windows.Forms.PictureBox() Me.TableLayoutPanel1 = New System.Windows.Forms.TableLayoutPanel() CType(Me.PictureBox1,System.ComponentModel.ISupportInitialize).BeginInit Me.TableLayoutPanel1.SuspendLayout Me.SuspendLayout ' 'EmployeesComboBox ' Me.TableLayoutPanel1.SetColumnSpan(Me.EmployeesComboBox, 3) Me.EmployeesComboBox.Dock = System.Windows.Forms.DockStyle.Top Me.EmployeesComboBox.Font = New System.Drawing.Font("Microsoft Sans Serif", 16.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) Me.EmployeesComboBox.FormattingEnabled = True Me.EmployeesComboBox.ItemHeight = 25 Me.EmployeesComboBox.Location = New System.Drawing.Point(53, 303) Me.EmployeesComboBox.Name = "EmployeesComboBox" Me.EmployeesComboBox.Size = New System.Drawing.Size(394, 33) Me.EmployeesComboBox.TabIndex = 0 ' 'PictureBox1 ' Me.PictureBox1.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _ Or System.Windows.Forms.AnchorStyles.Left) _ Or System.Windows.Forms.AnchorStyles.Right),System.Windows.Forms.AnchorStyles) Me.PictureBox1.Image = Global.ProductiePitching.My.Resources.Resources.user Me.PictureBox1.Location = New System.Drawing.Point(128, 3) Me.PictureBox1.Name = "PictureBox1" Me.PictureBox1.Size = New System.Drawing.Size(244, 294) Me.PictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom Me.PictureBox1.TabIndex = 1 Me.PictureBox1.TabStop = false ' 'TableLayoutPanel1 ' Me.TableLayoutPanel1.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _ Or System.Windows.Forms.AnchorStyles.Left) _ Or System.Windows.Forms.AnchorStyles.Right),System.Windows.Forms.AnchorStyles) Me.TableLayoutPanel1.ColumnCount = 5 Me.TableLayoutPanel1.ColumnStyles.Add(New System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 10!)) Me.TableLayoutPanel1.ColumnStyles.Add(New System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 15!)) Me.TableLayoutPanel1.ColumnStyles.Add(New System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50!)) Me.TableLayoutPanel1.ColumnStyles.Add(New System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 15!)) Me.TableLayoutPanel1.ColumnStyles.Add(New System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 10!)) Me.TableLayoutPanel1.Controls.Add(Me.EmployeesComboBox, 1, 1) Me.TableLayoutPanel1.Controls.Add(Me.PictureBox1, 2, 0) Me.TableLayoutPanel1.Location = New System.Drawing.Point(0, 0) Me.TableLayoutPanel1.Name = "TableLayoutPanel1" Me.TableLayoutPanel1.RowCount = 2 Me.TableLayoutPanel1.RowStyles.Add(New System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50!)) Me.TableLayoutPanel1.RowStyles.Add(New System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50!)) Me.TableLayoutPanel1.RowStyles.Add(New System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20!)) Me.TableLayoutPanel1.Size = New System.Drawing.Size(500, 600) Me.TableLayoutPanel1.TabIndex = 2 ' 'EmployeePickerUserControl ' Me.AutoScaleDimensions = New System.Drawing.SizeF(6!, 13!) Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font Me.Controls.Add(Me.TableLayoutPanel1) Me.Name = "EmployeePickerUserControl" Me.Size = New System.Drawing.Size(500, 600) CType(Me.PictureBox1,System.ComponentModel.ISupportInitialize).EndInit Me.TableLayoutPanel1.ResumeLayout(false) Me.ResumeLayout(false) End Sub Friend WithEvents EmployeesComboBox As ComboBox Friend WithEvents PictureBox1 As PictureBox Friend WithEvents TableLayoutPanel1 As TableLayoutPanel End Class