I'm trying to figure out how to make a picturebox invisible and later visible again.
I want to do it with a small counter. Counter is working good but now the visible/invisible picturebox.
Anyone got an idea how to handle this?
Printable View
I'm trying to figure out how to make a picturebox invisible and later visible again.
I want to do it with a small counter. Counter is working good but now the visible/invisible picturebox.
Anyone got an idea how to handle this?
What do you want to do exactly with the counter? Can you be more explicit?
hi dude
ok plz explain to me what this counter does
and if you have any code you can display for it then please do
i have used the visible property for picture boxes often.
if you want it to show upon an event such as click or something
then set the visible property of the picture box to false
and then within the code you put in:
picPictureWhatever.visible = true
PictureWhatever been the picture you have
I wanted to 3 seconds per minute a picture to appear.
picPictureWhatever.visible = true works!
Thanks all for the help!
To make it visible/invisible as time goes by use a Timer control.Quote:
Originally posted by Saskia
I wanted to 3 seconds per minute a picture to appear.