B
Brian
I'm trying to create a recordset based upon a query
called QueryAv that is a SELECT so that I can then update
the records. What are the declarations and staements I
need to do this?
Dim MyDB As Database, MySet As Recordset
Set MyDb = CurrentDb
Set MySet = MyDb.OpenRecordset("QueryAv")
MySet.Edit
MySet.[Booking ID] = 1
Myset.Update
etc.
This doesn't work with an error too few parameters.
called QueryAv that is a SELECT so that I can then update
the records. What are the declarations and staements I
need to do this?
Dim MyDB As Database, MySet As Recordset
Set MyDb = CurrentDb
Set MySet = MyDb.OpenRecordset("QueryAv")
MySet.Edit
MySet.[Booking ID] = 1
Myset.Update
etc.
This doesn't work with an error too few parameters.