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

Flashing control 1

Status
Not open for further replies.

samotek

Technical User
May 9, 2005
197
BG
I want to build a command button on the form that flashes when clicked. How could i do it ?
 
Why?????

You could have another command button different colour in the same location on the form that is invisible.

Then in click event of the command button make the one you click invisible, make the other colour button visible then invisible and then your original button visible again.

If its to quick you would have to put a wait inbetween each line.

Code:
cmdButton1.visible = false
cmdButton2.visible = true
cmdButton2.visible = false
cmdbutton1.visible = true

Is that what you mean

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top