Wiley.com
Print this page Share

Visual Studio.NET All-in-One Desk Reference For Dummies

ISBN: 978-0-7645-1626-9
Paperback
960 pages
April 2002
Visual Studio.NET All-in-One Desk Reference For Dummies (0764516264) cover image
This title is out-of-print and not currently available for purchase from this site.

Do you think you've discovered an error in this book? Please check the list of errata below to see if we've already addressed the error. If not, please submit the error via our Errata Form. We will attempt to verify your error; if you're right, we will post a correction below.

ChapterPageDetailsDatePrint Run
710 Missing text from page 710

Clearing the text boxes on your form

You may need to display fresh records while working with records in your application. For this, you need to clear the content in the text boxes present on the form. To do so, add the following code to the Click event of the Clear Details button:
TxtID.Text = ""
TxtFName.Text = ""
TxtLName.Text = ""
TxtDept.Text = ""
txtSearch.Text = ""
TxtDesg.Text = ""

Related Titles

General Programming & Software Development

by Richard Wagner, Richard Mansfield
by Michael Jesse Chonoles, James A. Schardt
by Aaron E. Walsh
by Janet Valade
Back to Top