C# 中如何判断组合框下拉列表是空的
发布网友
发布时间:2022-12-30 14:55
我来回答
共3个回答
热心网友
时间:2023-10-30 18:24
if (ComboBox1.Items.Count==0)
则组合框下拉列表是空的
热心网友
时间:2023-10-30 18:24
blename as string)
……
strSQL = "select * from " & tablename & "where mid(jslsh, 4, 8)>='" & Mid(str1, 4, 8) & "' "
Set objRecordset = ExecuteSQL(strSQL, strMsgText)
'如果流水号存在
If objRecordset.EOF = False Then
MsgBox " 测试不过,有重码!"
Exit Sub
End If
……
end sub
热心网友
时间:2023-10-30 18:25
伪代码
if(combobox.items != null && combobox.item.count>0)
// 不为空
else
// 为空