Text entry

B

Bill

I have a popup form with a simple text box that
allows a user to enter text data. If the user presses
the Enter key after entering the text, the field is
cleared. How do I prevent that? Rather, I would
like the text to continue to display, perhaps with
the cursor at the beginning of the string.

I tried a requery "after update", but that had no
effect.

Thanks,
Bill
 
V

Vantastic

Sounds like either two things:

a) When the user presses enter, it is the last field on the form, and jumps
to a new record, in which case, create another field that the focus will jump
to.

b) The "Enter Key Behaviour" property is set to "New Line In Field" as
opposed to "Default"
 
B

Bill

It was the latter.
Thanks,
Bill



Vantastic said:
Sounds like either two things:

a) When the user presses enter, it is the last field on the form, and
jumps
to a new record, in which case, create another field that the focus will
jump
to.

b) The "Enter Key Behaviour" property is set to "New Line In Field" as
opposed to "Default"
 
Top