B
bill salkin
I setup a "Try..." block and attempted to open a non-
existant database. It went to the second "catch" not the
first. What is the proper "catch" clause for this specific
case?
TIA,
Bill
try
conn.open ' will generate an error
....
Catch ex As InvalidOperationException
...
Catch ex As Exception
end try
existant database. It went to the second "catch" not the
first. What is the proper "catch" clause for this specific
case?
TIA,
Bill
try
conn.open ' will generate an error
....
Catch ex As InvalidOperationException
...
Catch ex As Exception
end try