Removing Focus

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
 
R

Rick Brandt

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.
 
D

DS

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
 
D

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
 
Top