Partial Class frmBuscarDeLista Inherits System.Windows.Forms.Form 'Form reemplaza a Dispose para limpiar la lista de componentes. 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 'Requerido por el Diseñador de Windows Forms Private components As System.ComponentModel.IContainer 'NOTA: el Diseñador de Windows Forms necesita el siguiente procedimiento 'Se puede modificar usando el Diseñador de Windows Forms. 'No lo modifique con el editor de código. Private Sub InitializeComponent() Me.dgvBuscarDeLista = New System.Windows.Forms.DataGridView() Me.btnAceptar = New System.Windows.Forms.Button() Me.btnCancelar = New System.Windows.Forms.Button() Me.FlowLayoutPanel1 = New System.Windows.Forms.FlowLayoutPanel() Me.Panel1 = New System.Windows.Forms.Panel() CType(Me.dgvBuscarDeLista, System.ComponentModel.ISupportInitialize).BeginInit() Me.FlowLayoutPanel1.SuspendLayout() Me.Panel1.SuspendLayout() Me.SuspendLayout() ' 'dgvBuscarDeLista ' Me.dgvBuscarDeLista.AllowUserToAddRows = False Me.dgvBuscarDeLista.AllowUserToDeleteRows = False Me.dgvBuscarDeLista.AllowUserToOrderColumns = True Me.dgvBuscarDeLista.BackgroundColor = System.Drawing.Color.White Me.dgvBuscarDeLista.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D Me.dgvBuscarDeLista.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize Me.dgvBuscarDeLista.Dock = System.Windows.Forms.DockStyle.Fill Me.dgvBuscarDeLista.Location = New System.Drawing.Point(0, 0) Me.dgvBuscarDeLista.MultiSelect = False Me.dgvBuscarDeLista.Name = "dgvBuscarDeLista" Me.dgvBuscarDeLista.ReadOnly = True Me.dgvBuscarDeLista.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect Me.dgvBuscarDeLista.Size = New System.Drawing.Size(599, 226) Me.dgvBuscarDeLista.TabIndex = 0 ' 'btnAceptar ' Me.btnAceptar.BackColor = System.Drawing.Color.White Me.btnAceptar.DialogResult = System.Windows.Forms.DialogResult.OK Me.btnAceptar.FlatStyle = System.Windows.Forms.FlatStyle.Flat Me.btnAceptar.ForeColor = System.Drawing.Color.Maroon Me.btnAceptar.Location = New System.Drawing.Point(3, 3) Me.btnAceptar.Name = "btnAceptar" Me.btnAceptar.Size = New System.Drawing.Size(75, 23) Me.btnAceptar.TabIndex = 1 Me.btnAceptar.Text = "Aceptar" Me.btnAceptar.UseVisualStyleBackColor = False ' 'btnCancelar ' Me.btnCancelar.BackColor = System.Drawing.Color.White Me.btnCancelar.FlatStyle = System.Windows.Forms.FlatStyle.Flat Me.btnCancelar.ForeColor = System.Drawing.Color.Maroon Me.btnCancelar.Location = New System.Drawing.Point(84, 3) Me.btnCancelar.Name = "btnCancelar" Me.btnCancelar.Size = New System.Drawing.Size(75, 23) Me.btnCancelar.TabIndex = 2 Me.btnCancelar.Text = "Cancelar" Me.btnCancelar.UseVisualStyleBackColor = False ' 'FlowLayoutPanel1 ' Me.FlowLayoutPanel1.BackColor = System.Drawing.Color.WhiteSmoke Me.FlowLayoutPanel1.Controls.Add(Me.btnAceptar) Me.FlowLayoutPanel1.Controls.Add(Me.btnCancelar) Me.FlowLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Bottom Me.FlowLayoutPanel1.Location = New System.Drawing.Point(0, 226) Me.FlowLayoutPanel1.Name = "FlowLayoutPanel1" Me.FlowLayoutPanel1.Size = New System.Drawing.Size(599, 55) Me.FlowLayoutPanel1.TabIndex = 3 ' 'Panel1 ' Me.Panel1.Controls.Add(Me.dgvBuscarDeLista) Me.Panel1.Dock = System.Windows.Forms.DockStyle.Fill Me.Panel1.Location = New System.Drawing.Point(0, 0) Me.Panel1.Name = "Panel1" Me.Panel1.Size = New System.Drawing.Size(599, 226) Me.Panel1.TabIndex = 4 ' 'frmBuscarDeLista ' Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!) Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font Me.ClientSize = New System.Drawing.Size(599, 281) Me.Controls.Add(Me.Panel1) Me.Controls.Add(Me.FlowLayoutPanel1) Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None Me.Name = "frmBuscarDeLista" Me.Text = "frmBuscarDeLista" CType(Me.dgvBuscarDeLista, System.ComponentModel.ISupportInitialize).EndInit() Me.FlowLayoutPanel1.ResumeLayout(False) Me.Panel1.ResumeLayout(False) Me.ResumeLayout(False) End Sub Friend WithEvents dgvBuscarDeLista As DataGridView Friend WithEvents btnAceptar As Button Friend WithEvents btnCancelar As Button Friend WithEvents FlowLayoutPanel1 As FlowLayoutPanel Friend WithEvents Panel1 As Panel End Class