我有一个包含 5 个值的 ComboBox。一个空行,“贷方”、“借方”、“贷方结算”和“借方结算”。我正在尝试对其执行错误验证。如果用户在组合框中键入任何内容或者选择了空字符串,我想触发一个错误。这就是我现在所拥有的,但它不起作用。有任何想法吗?
If cboTypeRes.Text.Trim = "" or cboTypeRes.Text.Trim <> "Debit" Or cboTypeRes.Text.Trim <> "Credit" Or cboTypeRes.Text.Trim = "Debit Settlement" Or cboTypeRes.Text.Trim = "Credit Settlement" Then