I\'m creating a WinForm application that takes a person\'s photo with a webcam and am trying to now create a countdown effect. I have 4 images that i would like to cycle thr
You should use
counter++; this.SuspendLayout(); pbCountDown.Image = new Bitmap("c:/vrfid/apppics/" + counter + ".jpg"); this.ResumeLayout();
I tested it and it was working, hope it helps you