0

我有一个列表框,我只想在其中有一定数量的条目时出现

    if maxentries is not 20 then listbox 1 = ""
    endif 
4

3 回答 3

1

也许

listBox1.Visible = listBox1.Items.Count >= 20
于 2013-06-25T07:17:58.387 回答
0
If listBox1.Items.Count >= 20 Then
   listBox1.Visible = true
Else
   listBox1.Visible = false
于 2013-06-25T07:21:52.257 回答
0

在以下情况下使用立即:

listBox1.Visible = IIf(listBox1.Items.Count>=20,true,false)
于 2013-06-25T07:29:21.447 回答