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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Text change

Status
Not open for further replies.
May 31, 2000
34
US
I would like to have the text in a text box change to "exported" after a command button is pushed. Any suggestions?
 
In the Click event procedure of your button, add something like this (assuming the TextBox is on the same form):
Me!TextBoxName.Text = "exported"
Me.Refresh

Hope This Help, PH.
Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884
 
You did not say what kind of textbox. They can be formated, you know. Why not use the caption on a label instead. It seems to me it would serve the same purpose. It might click to "send" or "do" and then "done" when it is executed. The next on_current could set it back.

rollie@bwysy.net
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top