Hi
I am creating a program that uses class modules to access a database. All the procudures that access the database are in a class module.
Whenever I am retrieving records from the database I am first checking to see if there are any by using..

if rs.eof = true and rs.bof = true then
exit sub
end if

..I want to maybe use a flag that is set in this class module when there are no records. How can I get my form to recognise this flag?

Any help would be appreciated

Thanks