_ Partial Class frmListaPropuestasInversion 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.dgvPropuestasDeInversion = New System.Windows.Forms.DataGridView() Me.Label1 = New System.Windows.Forms.Label() Me.Label2 = New System.Windows.Forms.Label() Me.cboEmpresas = New System.Windows.Forms.ComboBox() Me.txtCodigo = New System.Windows.Forms.TextBox() Me.txtNombre = New System.Windows.Forms.TextBox() Me.txtValor = New System.Windows.Forms.TextBox() Me.btnInsertar = New System.Windows.Forms.Button() CType(Me.dgvPropuestasDeInversion, System.ComponentModel.ISupportInitialize).BeginInit() Me.SuspendLayout() ' 'dgvPropuestasDeInversion ' Me.dgvPropuestasDeInversion.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize Me.dgvPropuestasDeInversion.Location = New System.Drawing.Point(12, 114) Me.dgvPropuestasDeInversion.Name = "dgvPropuestasDeInversion" Me.dgvPropuestasDeInversion.Size = New System.Drawing.Size(673, 150) Me.dgvPropuestasDeInversion.TabIndex = 0 ' 'Label1 ' Me.Label1.AutoSize = True Me.Label1.Font = New System.Drawing.Font("Trebuchet MS", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) Me.Label1.Location = New System.Drawing.Point(213, 27) Me.Label1.Name = "Label1" Me.Label1.Size = New System.Drawing.Size(177, 22) Me.Label1.TabIndex = 1 Me.Label1.Text = "Propuestas de Inversion" ' 'Label2 ' Me.Label2.AutoSize = True Me.Label2.Font = New System.Drawing.Font("Microsoft Sans Serif", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) Me.Label2.Location = New System.Drawing.Point(210, 58) Me.Label2.Name = "Label2" Me.Label2.Size = New System.Drawing.Size(180, 20) Me.Label2.TabIndex = 2 Me.Label2.Text = "Propuestas de Inversion" ' 'cboEmpresas ' Me.cboEmpresas.FormattingEnabled = True Me.cboEmpresas.Location = New System.Drawing.Point(478, 57) Me.cboEmpresas.Name = "cboEmpresas" Me.cboEmpresas.Size = New System.Drawing.Size(121, 21) Me.cboEmpresas.TabIndex = 3 ' 'txtCodigo ' Me.txtCodigo.Location = New System.Drawing.Point(127, 282) Me.txtCodigo.Name = "txtCodigo" Me.txtCodigo.Size = New System.Drawing.Size(100, 20) Me.txtCodigo.TabIndex = 4 ' 'txtNombre ' Me.txtNombre.Location = New System.Drawing.Point(127, 308) Me.txtNombre.Name = "txtNombre" Me.txtNombre.Size = New System.Drawing.Size(100, 20) Me.txtNombre.TabIndex = 5 ' 'txtValor ' Me.txtValor.Location = New System.Drawing.Point(127, 334) Me.txtValor.Name = "txtValor" Me.txtValor.Size = New System.Drawing.Size(100, 20) Me.txtValor.TabIndex = 6 ' 'btnInsertar ' Me.btnInsertar.Location = New System.Drawing.Point(340, 282) Me.btnInsertar.Name = "btnInsertar" Me.btnInsertar.Size = New System.Drawing.Size(75, 23) Me.btnInsertar.TabIndex = 7 Me.btnInsertar.Text = "Insertar" Me.btnInsertar.UseVisualStyleBackColor = True ' 'frmListaPropuestasInversion ' Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!) Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font Me.ClientSize = New System.Drawing.Size(728, 422) Me.Controls.Add(Me.btnInsertar) Me.Controls.Add(Me.txtValor) Me.Controls.Add(Me.txtNombre) Me.Controls.Add(Me.txtCodigo) Me.Controls.Add(Me.cboEmpresas) Me.Controls.Add(Me.Label2) Me.Controls.Add(Me.Label1) Me.Controls.Add(Me.dgvPropuestasDeInversion) Me.Name = "frmListaPropuestasInversion" Me.Text = "frmListaPropuestasInversion" CType(Me.dgvPropuestasDeInversion, System.ComponentModel.ISupportInitialize).EndInit() Me.ResumeLayout(False) Me.PerformLayout() End Sub Friend WithEvents dgvPropuestasDeInversion As DataGridView Friend WithEvents Label1 As Label Friend WithEvents Label2 As Label Friend WithEvents cboEmpresas As ComboBox Friend WithEvents txtCodigo As TextBox Friend WithEvents txtNombre As TextBox Friend WithEvents txtValor As TextBox Friend WithEvents btnInsertar As Button End Class