Agregar más de 10 columnas en un listbox. Excel-vb
Estaba tratando de añadirle una columna más a mi listbox actual mente tiene 10, pero al parecer la propiedad AddItem solo acepta un máximo de 10 columnas. Alguien me podría ayudar a corregir mi código. Gracias
Dim i As Long Private Sub CommandButton8_Click() With ListBox1 .ColumnCount = 10 'numero de columnas .ColumnWidths = "40 pt;40 pt;40 pt;40 pt;40 pt;40 pt;40 pt;40 pt;40 pt;40 pt; " End With ' aqui se agregan el contenido del texbox al listbox1 ListBox1.AddItem Val(txt_numcomp.Text) ListBox1.List(i, 0) = Space(10 - 2 * Len(ListBox1.List(i, 0))) & ListBox1.List(i, 0) ListBox1.List(i, 1) = Me.txt_cantidad ListBox1.List(i, 2) = Me.txt_cantidad ListBox1.List(i, 3) = Me.txt_cantidad ListBox1.List(i, 4) = Me.txt_cantidad ListBox1.List(i, 5) = Me.txt_cantidad ListBox1.List(i, 6) = Me.txt_cantidad ListBox1.List(i, 7) = Me.txt_cantidad ListBox1.List(i, 8) = Me.txt_cantidad ListBox1.List(i, 9) = Me.txt_cantidad i = i + 1 sumarImportes End Sub
1 respuesta
Respuesta de Dante Amor
4