Message 1 of 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
This isn't AutoCAD specific but not sure where else to post it.
My app has uses a bunch of images that display in picture boxes.
Currently I have them in a folder that would be distributed with the app but I'd like to import them into the project itself.
I've worked out that I can access the imported image file using:
Global.MyApp.My.Resources.Resources.MyImage
MyImage being the resource filename
Is there a way I can make it a variable?
eg Dim MyImage as string = "Image" + "00"
PictureBox1.Image = Global.MyApp.My.Resources.Resources.MyImage
Solved! Go to Solution.