In a vb module I want to fill out the fields with a for ... next loop => see version2. But there is a problem. Can somebody knows the solution

Regards
Rolf


'====== Version1 ====
Code:
rs.Edit
    rs![feld1] = "User1"
    rs![feld2] = "User2"
    rs![feld3] = "User3"
rs.Update


'==== Version2 (with for .. next) don't work...