How to do multiple conditions for single If statement
I'm trying to do two conditions on a single If statement in vbscript. Should be really simple, but it's not working. Something like:
If Not (fileName = test开发者_JS百科FileName) & (fileName <> "") Then
Else ....
I'm making it two if statements to get it working, but can I do a not conditional with an "and" with another not condition?
Use the 'And' keyword for a logical and. Like this:
If Not ((filename = testFileName) And (fileName <> "")) Then
As Hogan notes above, use an AND
instead of &
. See this tutorial for more info.
精彩评论