help in clear screen

R

Renato Bacani

I have a textbox 1 to 4, and i want to clear details inside of each box using
a CLEAR COMMAND BUTTON..but i dont know the code for that..please
help...thank you for the suggestions last time...Thanks a lot..
 
F

Franck

I have a textbox 1 to 4, and i want to clear details inside of each box using
a CLEAR COMMAND BUTTON..but i dont know the code for that..please
help...thank you for the suggestions last time...Thanks a lot..

textbox1.text = ""
textbox2.text = ""
textbox3.text = ""
textbox4.text = ""
 
Top