Textbox clear

  • Thread starter Thread starter elli
  • Start date Start date
E

elli

I have a form where user puts his/her's username and password.. Works
allright, but when one opens a form again, the last used user name shows. So
how do I clear it every time, for instance when OK button is pushed?

-elli-
 
I have a form where user puts his/her's username and password.. Works
allright, but when one opens a form again, the last used user name shows. So
how do I clear it every time, for instance when OK button is pushed?

-elli-

The two controls are unbound?
If you have actually closed then re-opened the form, by default the
control's should be blank.

If you have just hidden the form instead of closing it, then you can
clear the controls using:
[ControlA] = Null
[ControlB] = Null
 
Back
Top