Removing Focus

  • Thread starter Thread starter DS
  • Start date Start date
D

DS

How do you remove focus from a field if there is now other fields to
send the focus to. I tried...

Me.Text1.SetFocus=False

That didn't work,
Any Suggestions Appreciated.
Thanks
DS
 
DS said:
How do you remove focus from a field if there is now other fields to
send the focus to. I tried...

Me.Text1.SetFocus=False

That didn't work,
Any Suggestions Appreciated.
Thanks
DS

You have no choice but to set focus to something else. Doesn't have to be a
control bound to a field though. You could add a tiny unbound TextBox that is
used for this.
 
Rick said:
You have no choice but to set focus to something else. Doesn't have to be a
control bound to a field though. You could add a tiny unbound TextBox that is
used for this.
Thanks Rick,
You know when you open a form and no field has focus? Is there a way to
emulate tat?
Thanks
DS
 
DS said:
Thanks Rick,
You know when you open a form and no field has focus? Is there a way to
emulate tat?
Thanks
DS
AH Huh! Surfed around and found a Solution!
Put a Dead Command Button on the form. Make it Transparent and on
leaving the field set the focus to the Dead Button. You don't even know
the Button is there!
DS
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top