在访问 2007 如何使列表框像组合框一样成为下拉列表而不将其更改为组合框类型,因为它具有多选属性,我需要在表单上节省一些空间这可能吗?
问问题
2989 次
1 回答
1
如果 ListBox 下有足够的空间,请尝试格式化-> 放在前面并分配事件
Private Sub MutantListbox_GotFocus()
MutantListbox.Height = MutantListbox.Height * 10 ' it waz 1 line become 10
End Sub
Private Sub MutantListbox_LostFocus()
MutantListbox.Height = MutantListbox.Height / 10 ' it waz 10 line become 1
End Sub
于 2013-10-14T12:27:27.317 回答