R raindrop3 Registered User. Local time Today, 21:29 Joined Sep 6, 2001 Messages 98 Oct 3, 2001 #1 Hello, in Access97 I'm using this statement: dim db as database In Access2000 is doesn't work! Does anyone know what the right statement is? Thanks a lot. Albert
Hello, in Access97 I'm using this statement: dim db as database In Access2000 is doesn't work! Does anyone know what the right statement is? Thanks a lot. Albert
S shacket Registered User. Local time Today, 21:29 Joined Dec 19, 2000 Messages 218 Oct 3, 2001 #2 That's the right statement. Your references are likely not correct or in the right order.
P Peter D Registered User. Local time Today, 21:29 Joined Sep 7, 2000 Messages 188 Oct 3, 2001 #3 First, use dim dbs as DAO.database You'll have to do the same with recordset objects. dim rst as DAO.recordset Then, make sure that "Microsoft DAO 3.x Object Library" is in your references list. Hope this helps, Peter De Baets Peter's Software - MS Access Shareware and Freeware http://www.peterssoftware.com
First, use dim dbs as DAO.database You'll have to do the same with recordset objects. dim rst as DAO.recordset Then, make sure that "Microsoft DAO 3.x Object Library" is in your references list. Hope this helps, Peter De Baets Peter's Software - MS Access Shareware and Freeware http://www.peterssoftware.com
R raindrop3 Registered User. Local time Today, 21:29 Joined Sep 6, 2001 Messages 98 Oct 4, 2001 #4 Thanks for the replys I changed the order of my references and now it works great. Thanks again, Albert
Thanks for the replys I changed the order of my references and now it works great. Thanks again, Albert