In my Form1 I am trying to change around 50 button images as follows:
button1.Image = new Bitmap("C:\\x.jpg");
button2.Image = new Bitmap("C:\\y.jpg");
button3.Image = new Bitmap("C:\\z.jpg");
.....
etc....
on another event I want all the 50 buttons to have their default images I set using the designer properties window. Is that possible or should I just declare the images again???
what I have tried and DIDN'T WORK:
tried both:
Properties.Settings.Default.Reset();
Properties.Settings.Default.Reload();