i'm using ADO and wamt to simplify this:
adodc1.recordset.movenext

in the load module i have

Private Sub Form_Load()

Dim rs As Recordset
Set rs = Adodc1.recordset

End Sub

Private Sub Button_Next()

rs.movenext

End Sub

why this code don't work??


TIA