J
JJ
Hi,
I have a funtion that has suddenly developed this error. It has worked fine
and nothing has been changed. stID is where the error happens. So it appears
to be adding the first 2 strings but no the 3rd. I'm at a loss, thank you for
any help.
Function AddFile1(rstTemp As DAO.Recordset, _
long1 As String, photo As String, stID As String)
With rstTemp
.AddNew
!Long = long1
!photonum = photo
!stID = stID
.Update
.Bookmark = .LastModified
End With
End Function
I have a funtion that has suddenly developed this error. It has worked fine
and nothing has been changed. stID is where the error happens. So it appears
to be adding the first 2 strings but no the 3rd. I'm at a loss, thank you for
any help.
Function AddFile1(rstTemp As DAO.Recordset, _
long1 As String, photo As String, stID As String)
With rstTemp
.AddNew
!Long = long1
!photonum = photo
!stID = stID
.Update
.Bookmark = .LastModified
End With
End Function