hello thanks for the replay
It didn't work for me I tried
AuthenticateUser = "Found User: " & trim(RS("{description}"))
AuthenticateUser = "Found User: " & trim(RS("description"))
AuthenticateUser = "Found User: " & trim(oRS("{description}"))
AuthenticateUser = "Found User: " & trim(oRS("description"))
all of the didn't work
any other solution
Main Topics
Browse All Topics





by: topazgPosted on 2007-01-02 at 06:04:54ID: 18227541
As it is that is only possible if you are happy with them all in one field.
To do this, change
AuthenticateUser = false
to
AuthenticateUser = "User Not Found"
and the following:
-------------------
if oRS.bof or oRS.eof then
AuthenticateUser = false
else
AuthenticateUser = true
end if
-----------------
to
----------------
if oRS.bof or oRS.eof then
AuthenticateUser = "User Not Found"
else
AuthenticateUser = "Found User: " & trim(RS("{fieldname}"))
end if
----------------
That _should_ work I think, with {fieldname} being replaced by the column (presumably "cn") in the table you are extracting the data from.