MikeGeitner
Technical User
I'm trying to learn how to use a recordset on an unbound form. Here's what I have and the the first record shows up in the two text boxes. Now all I want to do is to add command buttons to navigate through the records as if this were a bound form. I've added one button with "rs.movenext" in the onclick event, which gives me an error "Compile Error: Variable not defined".
What am I missing? Something simple, I presume?
What am I missing? Something simple, I presume?
Code:
Public Sub Form_Load()
Dim ws As DAO.Workspace
Dim db As DAO.Database
Dim rs As DAO.Recordset
Set ws = DBEngine(0)
Set db = ws.OpenDatabase("C:\Documents and Settings\Mike\My Documents\Database\Northwind.mdb")
Set rs = db.OpenRecordset("Customers", dbOpenDynaset)
rs.MoveFirst
Me.txtCity = rs.Fields("City")
Me.txtCust = rs.Fields("CompanyName")
ws.Close
Set ws = Nothing
Set db = Nothing
End Sub