如何使用2 columns在列表中添加项目?如果我使用ListBox.AddItem,它将仅在第一列中添加项目。我也想在2nd column中添加项目。谢谢! 最佳答案 通过使用List属性。ListBox1.AddItem "foo" ListBox1.List(ListBox1.ListCount - 1, 1) = "bar"