Como le pongo titulo a las columnas de Listbox
Tengo un Listbox de 5 columnas y tienen el cabesado activado pero sale en blanco, como le pongo títulos. Este es el codigo:
With UserForm1 ListBox1.ColumnCount = 5 ListBox1.ColumnHeads = True ListBox1.ColumnWidths = "20;20;20;100;20" ListBox1.AddItem TextBox2.Value ListBox1.List(ListBox1.ListCount - 1, 1) = TextBox3.Value ListBox1.List(ListBox1.ListCount - 1, 2) = TextBox4.Value ListBox1.List(ListBox1.ListCount - 1, 3) = ComboBox1.Value If Optionpale = True Then .ListBox1.List(ListBox1.ListCount - 1, 4) = "Pale" If OptionQuiniela = True Then .ListBox1.List(ListBox1.ListCount - 1, 4) = "Quiniela" End With
1 respuesta
Respuesta de Dante Amor
2