Can you guys tell me a way to make a card either appear to flicker or to fade in and fade out?
I thought that that a picBox would have an Opacity attribute, but it doesnt so I couldn't play with that in a loop like I initially thought.
Then I thought I would make a loop that randomly changed the visible attribute, but it just didnt work - it just shows the card...cant figure it out
Random rnd = new Random();
answerpb.Visible = false;
for (int i = 0; i < 100000; i++)
{
{
answerpb.Visible =
true;}
answerpb.Visible =
false;}
answerpb.Visible =
true;=========
But I couldnt get that to work the way I wanted...anyone got any basic ideas?

Replies
Know the answer? Post it — somebody with the same question will find it here.