Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
特定の数のエントリがある場合にのみ表示するリスト ボックスがあります。
if maxentries is not 20 then listbox 1 = "" endif
多分
listBox1.Visible = listBox1.Items.Count >= 20
If listBox1.Items.Count >= 20 Then listBox1.Visible = true Else listBox1.Visible = false