The load and unload image in picturebox

retkehing

Well-known member
Joined
Feb 5, 2006
Messages
153
Programming Experience
Beginner
What is the code for loading an image from a directory and how to unload it and which means an blank picturebox, like a fresh new created component?
 
VB.NET:
picBox.loadimage("path")
to load an image
VB.NET:
picBox.clear
to clear
to load an image from directory use the openFileDialog
 
Back
Top