Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Clear form

Status
Not open for further replies.

goobil

Technical User
Aug 9, 2003
38
0
0
AG
Hi all,
Quick question:
I have a from that update or insert new data, What i want is after inserting or update the information the form clear all the textbox.

 
Well you have two choices:

if you only have 1 to 3 text boxes you can simply change their text properties to empty. like: "textbox.text = empty"

if you have many more then I'd suggest you use the 'For Each' command. like: 'For Each TextBox in ThisForm Then'

You can check out the help files for further info.

--MiggyD
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top