Code:
Rs.Open "SELECT * FROM tblUsers WHERE tblUsers.username = '" & uname & "';", Conn, 1,3
This is what I have as my log in script, and it works if the name exists, but if it doesn't, it tries to deal with it by giving it an error. I want to deal with it myself, like this:
Code:
if not rs.EOF then
'things that are set if there are no entries
end if
Possible?
|