Hello,
I'm trying to convert an access95 application to Access2000(A2k). According to the whitepaper from microsoft A2k uses only DAO3.60. My access95 application uses Dao3.0.
Before converting I have to set the Access95 reference to DAO 360. But....my application won't compile. It does not know rs.update ("This argument is not optional". I declared an rs as recordset and I tried dim rs as dao.recordset. No Nothing... When I return the reference to 3.0 all compiles quite well.
I don't know why this happens and I don't know how to solve it. Who knows???
I tried to solve it to just convert the 95 application by opening it within A2k. When I convert I get compilation errors. Just removing , updating and adding some references solves the compilation errors. However I lost some code!!!
strSQL = "[VERZ_NAAM] LIKE '" & UCase(strNaam) & "*' OR [VERZ_NAAM] LIKE '" & LCase(strNaam) & "*'"
has changed to:
strSQL = "[VERZ_NAAM]='" & strNaam & "'"
How could this happen and what's the problem, but more important how can I solve it???
Greetz,
Marcel
I'm trying to convert an access95 application to Access2000(A2k). According to the whitepaper from microsoft A2k uses only DAO3.60. My access95 application uses Dao3.0.
Before converting I have to set the Access95 reference to DAO 360. But....my application won't compile. It does not know rs.update ("This argument is not optional". I declared an rs as recordset and I tried dim rs as dao.recordset. No Nothing... When I return the reference to 3.0 all compiles quite well.
I don't know why this happens and I don't know how to solve it. Who knows???
I tried to solve it to just convert the 95 application by opening it within A2k. When I convert I get compilation errors. Just removing , updating and adding some references solves the compilation errors. However I lost some code!!!
strSQL = "[VERZ_NAAM] LIKE '" & UCase(strNaam) & "*' OR [VERZ_NAAM] LIKE '" & LCase(strNaam) & "*'"
has changed to:
strSQL = "[VERZ_NAAM]='" & strNaam & "'"
How could this happen and what's the problem, but more important how can I solve it???
Greetz,
Marcel