Hi,
I am receiving Run-time error '3001' Arguments of the wrong type, are out of acceptable range or are in conflict with eachother.
the error is on this line
Not sure why I am receiving that error? Another project of mine using that code has no problems.
Thanks,
Nightwalker
I am receiving Run-time error '3001' Arguments of the wrong type, are out of acceptable range or are in conflict with eachother.
Code:
If Not Text1.Text = rs.Fields("PlayerID") Then
rs.AddNew 'adding new record
Else
rs.Find rs.Fields("PlayerID") = Text1.Text
End If
Text1.Text = rs.Fields("PlayerID")
rs.Fields("Score") = ScoreHolder
rs.Update 'Handle the data
Code:
rs.Find rs.Fields("PlayerID") = Text1.Text
Code:
If Not Form1.txtContactID.Text = rs.Fields("CustomerID") Then
rs.AddNew 'adding new record
Else
rs.Find Form1.txtContactID.Text = rs.Fields("CustomerID")
End If
Nightwalker