我有一个列表框,我只想在其中有一定数量的条目时出现
if maxentries is not 20 then listbox 1 = ""
endif
答案 0 :(得分:1)
也许
listBox1.Visible = listBox1.Items.Count >= 20
答案 1 :(得分:0)
If listBox1.Items.Count >= 20 Then
listBox1.Visible = true
Else
listBox1.Visible = false
答案 2 :(得分:0)
立即使用if:
listBox1.Visible = IIf(listBox1.Items.Count>=20,true,false)