H
HSalim
Hi,
I'm using Access2000
I'd like to set the value of a field in a subform but am getting Runtime
Error 438 - Object doesn't support this property or method
Dim rs as DAO.Recordset
set rs = Forms!frmShipments!sbfCartons.RecordsetClone
rs.MoveFirst
while not rs.EOF
rs.Fields("Class") = 1
rs.update
rs.movenext
wend
I'm using Access2000
I'd like to set the value of a field in a subform but am getting Runtime
Error 438 - Object doesn't support this property or method
Dim rs as DAO.Recordset
set rs = Forms!frmShipments!sbfCartons.RecordsetClone
rs.MoveFirst
while not rs.EOF
rs.Fields("Class") = 1
rs.update
rs.movenext
wend