Link to home
Start Free TrialLog in
Avatar of afeistel2
afeistel2

asked on

clear text boxs in vb programming

I am currently working on a program and I want to make it where the output text box clears every time there is a change in the input text box how can I do this?
ASKER CERTIFIED SOLUTION
Avatar of Mike Tomlinson
Mike Tomlinson
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Here's a VBA/VB6 example:
Private Sub txtInput_Change()
    txtOutput.Text = ""
End Sub

Open in new window

Avatar of afeistel2
afeistel2

ASKER

I'm using vb 2010 Express.
Then the first example should be helpful.  It requires two TextBoxes, one called "txtInput" and the other called "txtOutput".  Just place that code into the form.
This question has been classified as abandoned and is closed as part of the Cleanup Program. See the recommendation for more details.