visual C# picturebox

How can i program a button to change a picturebox image by clicking.
picturebox1.image = ?
Wrong forum. This is C++, not C#. Try the MSDN forums.
webJose is right!
mrmarzban, it's simple answer

picturebox1.Image = Image.FromFile("location of the file on the HDD");

if you want to use a file from your resources, then:
picturebox.Image = project.Properties.Resources.nameOfTheImage;
Topic archived. No new replies allowed.