I have a bunch of pictures that will come along with the app. I have dragged a few (just testing now) into the project.
What I need to do is get access to a picture given its name. Is this possible?
I have a bunch of pictures that will come along with the app. I have dragged a few (just testing now) into the project.
What I need to do is get access to a picture given its name. Is this possible?
You should be able to reference them directly:
Dim p As Picture = nameOfPicture
Or
g.DrawPicture(nameOfPicture, 0, 0)