I've seen alot of bizzare behaviour in Access 2000, and I rarely use it, but in one project I noticed that direct string comparisons are, well, goofy. Example:<br><br>(Option Compare Database)<br><br>Dim str1 as string, str2 as string<br>str1 = "Microsoft"<br>str2 = "Can't Spell"<br>If str1 = str2 Then<br> msgbox "It Figures"<br>Else<br> msgbox "No Problem"<br>End If<br><br>I always get "It Figures"<br>I'm aware of string comparison functions, but why can't this equality comparison be made? Was there a FAQ on 2000 that I missed explaining this new behaviour? (it works in '97)<br>Thanks,<br>--Jim