是否可以使用字符串变量编写代码行?
例如,而不是写作:
If rs.Fields(1).Value > 1 And rs.Fields(2).Value = "B" Then
Msgbox "A"
End If
写作:
strA = "rs.Fields(1).Value > 1 And rs.Fields(2).Value = " & """B"""
If strA Then
Msgbox "A"
End If
答案 0 :(得分:0)
根据PaulFrancis的建议同意使用EVal()