KB-38309: Adding columns to a ListBox.
Question: Can I add columns to a ListBox? Solution: Yes, you can. For example: Screen.Item(“ListBox1”).ColumnCount = 3Screen.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) =…