I am having trouble with finding the right command for adding a new record to a table at a specific position.
Dim rs As DAO.Recordset
Dim a As Integer
Set rs = Me.RecordsetClone
rs.MoveLast
a = CLng(rs.Fields(colnum).Value) + 1
i want to put the record at position a
as u can see the trouble is not finding the location i need to put it in but getting it there !! Can anyone plz help me
All help is welcome tnx
Dim rs As DAO.Recordset
Dim a As Integer
Set rs = Me.RecordsetClone
rs.MoveLast
a = CLng(rs.Fields(colnum).Value) + 1
i want to put the record at position a
as u can see the trouble is not finding the location i need to put it in but getting it there !! Can anyone plz help me
All help is welcome tnx