Clearing textbox

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

elli

I have made a kind of search in my form where user puts text into unbound
textbox. It's working allright and when the item is not found a messagebox
appears saying :Item not found. But the item user wrote into that textbox
stays, so how do I get it to clear when there's not an item found...?

thanks if anyone...

-elli-
 
I have made a kind of search in my form where user puts text into unbound
textbox. It's working allright and when the item is not found a messagebox
appears saying :Item not found. But the item user wrote into that textbox
stays, so how do I get it to clear when there's not an item found...?

thanks if anyone...

-elli-

Me![TextBoxName] = null
 
Thank U both!

Take care

-elli-


fredg said:
I have made a kind of search in my form where user puts text into unbound
textbox. It's working allright and when the item is not found a
messagebox
appears saying :Item not found. But the item user wrote into that textbox
stays, so how do I get it to clear when there's not an item found...?

thanks if anyone...

-elli-

Me![TextBoxName] = null
 
Back
Top