Como agregar los encabezados a un listbox excel-vb
Eh tratado de utilizar la propiedad columnheads
Dim i As Long Private Sub CommandButton8_Click() Dim arrData() As String With ListBox1 .ColumnCount = 12 'numero de columnas .ColumnWidths = "40 pt;40 pt;40 pt;40 pt;40 pt; " & _ "40 pt;40 pt;40 pt;40 pt;40 pt; " & _ "40 pt;40 pt" End With f = ListBox1.ListCount j = ListBox1.ColumnCount ReDim arrData(f, j) For n = 0 To j For m = 0 To f - 1 'dato = ListBox1.List(m, n) arrData(m, n) = ListBox1.List(m, n) Next m Next n arrData(f, 0) = txt_numcomp arrData(f, 1) = txt_cantidad arrData(f, 2) = txt_cantidad arrData(f, 3) = txt_cantidad arrData(f, 4) = txt_cantidad arrData(f, 5) = txt_cantidad arrData(f, 6) = txt_cantidad arrData(f, 7) = txt_cantidad arrData(f, 8) = txt_cantidad arrData(f, 9) = txt_cantidad arrData(f, 10) = txt_cantidad arrData(f, 11) = txt_cantidad ' '... y los que quieras ' ListBox1.List = arrData() sumarImportes End Sub
para los encabezados de mis listbox pero no eh tenido suerte no se como aplicarlo de la forma correcta. A qui les dejo el código para que ayude
1 respuesta
Respuesta de Elsa Matilde
1