如何在vb6中选择ComboBox 如果未选择ComboBox,则显示消息“您尚未选择菜单”
答案 0 :(得分:1)
标记您的ComboBox,在属性集combo1
中将其命名为CausesValidation
至true
。
转到代码(F7)并添加验证子程序:
Private Sub combo1_Validate(Cancel As Boolean)
If combo1.ListIndex < 0 Then
' Mark somewhere that nothing is selected, like setting a boolean
End If
End Sub
在“确定”按钮中,只需检查是否已设置标记。你可以在OK按钮中检查listindex,但这看起来更干净;)MsgBox
用于Messageboxes;)
答案 1 :(得分:0)