HI
I suppose the values being displayed in your continuous form are stored in a table. I think I would use the DCount function - something like this:
Private Sub txtMyValue_AfterUpdate()
If DCount("*", "MyTable", "[MyValue]=" & Me.txtMyValue) > 0 Then
MsgBox "Duplicate value."...