Actually, sorry to correct you Ray (I know how you hate it when I do this

) but when going from 2000 to 2003, you should be aware that if you use any ADO references, DAO is now back to the default in 2003. So, it shouldn't really affect any existing databases since the ADO reference will have been set, but hopefully you are fully qualifying your code anyway (Dim rs As ADODB.Recordset instead of rs As Recordset).
Just something to be aware of when creating new databases in 2003, since you'll be used to 2000, is that the default for a new DB in 2003 has BOTH DAO and ADO checked in the references. So, you will definitely want to fully qualify your code for the correct object type, even on the DAO side.