在Macro Enabled excel 2007中 1.创建UserForm。 2.从ToolBox添加ComboBox。 3.在Combobox的属性中,“Items”选项不可用。
请你的建议。
由于 Ajit Teli
答案 0 :(得分:0)
您可以使用.AddItem
方法或.List
属性在Private Sub UserForm_Initialize()
ComboBox1.List = Array(1, 2, 3, 4, 5)
'The list is 1, 2, 3, 4, 5
ComboBox1.AddItem "A", 2
'The list is now 1, 2, A, 3, 4, 5
End Sub
内分配项目。
def count_text_file_lines(path):
with open(path, 'rt') as file:
line_count = sum(1 for _line in file)
return line_count
您还可以将二维数组分配给组合框。只有第一列将显示在组合框中,而其他值不可见但可读和可编辑。