Computer Science Canada
Programming C, C++, Java, PHP, Ruby, Turing, VB
Username:
Password:
Register
Wiki
Blog
Search
Turing
Chat Room
Members
Clear All Button Code
Index
->
Programming, Visual Basic and Other Basics
->
Visual Basic Help
Author
Message
12yearoldprogrammer
Posted:
Tue Feb 21, 2012 5:57 pm
Post subject: Clear All Button Code
Hey I'm looking For the code that clears or resets All TextBoxes? Anything that works will Help Thanks
Sponsor
Sponsor
Night
Posted:
Sun Feb 26, 2012 1:44 am
Post subject: RE:Clear All Button Code
You might have to do everything manually, e.g.:
code:
Textbox1.Text = Nothing
Textbox2.Text = Nothing
Textbox3.Text = Nothing
Textbox4.Text = Nothing
* VB.NET code, use
= null
in VB6 or
= ""
in either
or you might get away with unloading and reloading the form (might have to have a separate form to do that).
There's probably an easier/better way, though I can't test any at the moment.
D_homes
Posted:
Mon Apr 09, 2012 5:56 pm
Post subject: Re: Clear All Button Code
Yea, it has to be done manually. If you've got your TextBoxes in a control array it would be easier to clear them out though.
i.e
code:
For x As Integer = 1 To numberOfTextBoxes
txtBox(x).Text = Nothing
Next
Display posts from previous:
All Posts
1 Day
7 Days
2 Weeks
1 Month
3 Months
6 Months
1 Year
Oldest First
Newest First
Index
->
Programming, Visual Basic and Other Basics
->
Visual Basic Help
Page
1
of
1
[ 3 Posts ]
Jump to:
Select a forum
CompSci.ca
------------
- Network News
- General Discussion
General Forums
-----------------
- Hello World
- Featured Poll
- Contests
Contest Forums
-----------------
- DWITE
- [FP] Contest 2006/2008
- [FP] 2005/2006 Archive
- [FP] 2004/2005 Archive
- Off Topic
Lounges
---------
- User Lounge
- VIP Lounge
Programming
--------------
- General Programming
General Programming Forums
--------------------------------
- Functional Programming
- Logical Programming
- C
C
--
- C Help
- C Tutorials
- C Submissions
- C++
C++
----
- C++ Help
- C++ Tutorials
- C++ Submissions
- Java
Java
-----
- Java Help
- Java Tutorials
- Java Submissions
- Ruby
Ruby
-----
- Ruby Help
- Ruby Tutorials
- Ruby Submissions
- Turing
Turing
--------
- Turing Help
- Turing Tutorials
- Turing Submissions
- PHP
PHP
----
- PHP Help
- PHP Tutorials
- PHP Submissions
- Python
Python
--------
- Python Help
- Python Tutorials
- Python Submissions
- Visual Basic and Other Basics
VB
---
- Visual Basic Help
- Visual Basic Tutorials
- Visual Basic Submissions
Education
-----------
- Student Life
Graphics and Design
-----------------------
- Web Design
Web Design Forums
---------------------
- (X)HTML Help
- (X)HTML Tutorials
- Flash MX Help
- Flash MX Tutorials
- Graphics
Graphics Forums
------------------
- Photoshop Tutorials
- The Showroom
- 2D Graphics
- 3D Graphics
Teams
------
- dTeam Public
Style:
Appalachia
blueSilver
eMJay
subAppalachia
subBlue
subCanvas
subEmjay
subGrey
subSilver
subVereor
Search:
You can syndicate this boards posts using the file
backend.php
or view the
topic map using sitemap.php.
Terms of Use
|
Privacy Policy