Combobox的InputBox功能

时间:2014-02-25 19:06:00

标签: vb.net combobox

我正在使用VB.NET,并希望提示用户从选项列表中进行选择。有没有什么方法可以像InputBox函数一样容易地做到这一点?

谢谢,

1 个答案:

答案 0 :(得分:0)

在combobox的selectedIndexchanged事件中写下面的代码

Dim comboBox As comboBox = CType(sender, comboBox)


if combBox.SelectedItem Is Nothing Then
     Messagebox.show("please select something")
else
      ' your logic

End If