Here's my code ...
When it gets to the line, '!Referral_Source_ID = Me.cboRefSource.Value' It halts with Run-time error '3265' - 'Item Not found in this collection' i.e. Referral_Source_ID
But it definitely is ???
Anyone come across this before ?
Code:
If Me.cboRefSource.Text = "" Then
frm_close
Else
With Forms!frmAfAISLIVE!sfrmReferrals.Form.Recordset
.MoveLast
.Edit
!Referral_Source_ID = Me.cboRefSource.Value
.Update
End With
End If
When it gets to the line, '!Referral_Source_ID = Me.cboRefSource.Value' It halts with Run-time error '3265' - 'Item Not found in this collection' i.e. Referral_Source_ID
But it definitely is ???