Hi everyone,
can I do the following:
If countRS.EOF or ( (Not CountRS.EOF) and ( CInt(CountRS.fields("submitCount"))<4 ) ) then
do something here
End if
What I am trying to do is merge the following code:
if countRS.EOF then
do something
End
If ( (Not CountRS.EOF) and ( CInt(CountRS.fields("submitCount"))<4 ) ) then
do same something as in case if countRS.EOF
End if
I got "Exception occurred" error message, when countRS is empty. Can you help?
Betty