i tried what you suggested and this error came up.
run time error 3709
operation is not allowed on an object referencing a closed or invalid
connection
howard
>i tried what you suggested and this error came up.
>
[quoted text clipped - 4 lines]
>
>howard
Howard,
The line
NjcSet.Open "Comics", adoConnection
is trying to open the Comics table, right?
I don't think newer ADO versions allow you to specify just a table name;
they want a real SQL query.
Try this instead:
NjcSet.Open "SELECT * FROM Comics", adoConnection
Regards,
Eric