SelectAll in TextBox?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hey all, I have a textbox on a form in Access97. I only want users to enter
a capital "A" or a captial "E" in the textbox. What is the easiest way to
accomplish this in Access?

If I set the InputMask to ">L?" it works but ONLY if I tab into the field.
If I click into the field then it won't let me type anything.

I thought you could do something like textbox.SelectAll to automatically
select all the text in a textbox when you enter it but that doens't appear to
be an option.

tia,
dan c
 
Set the validation rule (in the table) to
Like "A" Or "E"

This will be cloned to any forms (if you already have the text box - delete
it and re-insert)

Hope his helps
 
Back
Top