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 に答える