Descrição:
É possível adicionar colunas ao objeto ListBox?
Solução:
Sim, é possível. Por exemplo:
Screen.Item("ListBox1").ColumnCount = 3 Screen.Item("ListBox1").Clear() Screen.Item("ListBox1").AddItem "Row 1, Col 1" Screen.Item("ListBox1").List(0, 1) = "Row 1, Col 2" Screen.Item("ListBox1").List(0, 2) = "Row 1, Col 3" Screen.Item("ListBox1").AddItem "Row 2, Col 1" Screen.Item("ListBox1").List(1, 1) = "Row 2, Col 2" Screen.Item("ListBox1").List(1, 2) = "Row 2, Col 3" Screen.Item("ListBox1").AddItem "Row 3, Col 1" Screen.Item("ListBox1").List(2, 1) = "Row 3, Col 2" Screen.Item("ListBox1").List(2, 2) = "Row 3, Col 3"