I am working on a view using inviewedit. Using code partially gotten from designer help (well, this chunk, completely) I am validating the entry:Case NewValue:
If Fulltrim(ColumnValue(index)) = "" Then
Messagebox "Please enter the text you entered as a new value.",,"You must enter the New Value."
continue = False
End If
I expected, and designer help implies, the cursor won’t leave the column- but after clicking on the msg box prompt, it pops the user in to the next column… which if you have a similar formula in there, you are not in a loop. Any ideas on keeping the cursor in the "offending column?
Tom