Aaron, if you're using Access 2000 you can use the Replace() function. What i do is check my criteria strings for single quotes then replace it with chr(44) which is an apostrophe (single quote is chr(39)) ex:
strCriteria = Replace(strCriteria, "'", chr(44))
that works just great. Check the object browser to get all of the functionality of Replace() and look in Help for Character Sets
Hope that helps.
Bob