To set the Allow AutoCorrect property of controls in your form:
1. Open the form in design view.
2. Select the text box where you want to turn the spelling correction off
(or use Shift+Click to select several at once.)
3. Open the Properties box. On the Other tab of that box, choose No
beside:
Allow AutoCorrect
Note that if you want the form to look like a table, just set the Default
View property of the *form* to:
Datasheet
If you want to progrmmatically find a record by typing the ID number,
place the form in Continuous (or Form) View, and add an unbound text box
to the Form Header section. Use the AfterUpdate event procedure of this
text box to find the record in the form's Clone set.
The code do do that looks like this:
http://allenbrowne.com/ser-03.html
That example talks about a combo, but you can use exactly the same code
for a text box if you wish.