在验证Combobox中输入的值之前,先检查其是否为null。如果是null,则将其更改为空字符串。
示例代码:
Private Sub cboComboBox_BeforeUpdate(Cancel As Integer)
If IsNull(Me.cboComboBox) Then Me.cboComboBox.Value = "" End If
End Sub
上一篇:Accesschildrecordcreatedfromasublistontheparent
下一篇:AccessCombobox在查询后返回错误的值