Jez,
Hello again! =)
Ok the error message means (in English lol)
"I cant find what your looking for with that name or index number"
Now, the "Collections" you are trying to access is the "Fields" collection, this is the columns
within the Recordset.
Check that the field names you have given exist within the Recordset. You need to use the field
names in the SELECT statement of your SQL.
e.g.
"SELECT MyTable.
MyField FROM MyTable" can be used to produce a Recordset. To access the Field Value, you need:
Code:
rs.Fields("MyField")
- See how the field names match?
I hope this helps.
Kind Regards,
Rob
<center>
"Nothing can stop the man with the right mental attitude from achieving his goal;
nothing on earth can help the man with the wrong mental attitude".
Thomas Jefferson</center>