VB.Net Picture Box Control

2.8k Views Asked by At

OK so currently this is the code I have below of a picture box

PxBx.Image = Image.FromFile("C:\Users\Ashleysaurus\Documents\Visual Studio 2015\Projects\ThisProject\ThisProject\Images\filename.JPG")

What is the correct syntax for using images files stored in the application files after i publish a project? Namely b/c this path will not always be the same based off when/where users would store the app files?

I did a bit of searching but havent figured out how to ask the correct question to get the answer from forums/google.

Thanks in advance

3

There are 3 best solutions below

3
On BEST ANSWER

I suggest you to add to your Settings.settings a new entry for the path to the folder where you store the images. This setting will be read at runtime and used to find your images. The advantage of this approach is that you can manually (or through your setup code) change the config file (where the setting is stored) to whatever your customer requires. Instead, hard coding a path (relative or not) inside the code is just a problem waiting to happen.

To add an entry in your setting.settings file right click your project and select properties, then the settings tab. Here, add a Name like "ImagePath", of Type = String and Scope = "Application", then set your current path as value and save.

Now, if you open the app.config (or web.config) file you will see the new entry and its value. To use it at runtime

string imagePath = Properties.Settings.Default.ImagePath;
0
On

You have to add the image to the project. You have 2 ways:

  1. Create a folder in your solution explorer called Images or whatever you want. Right click on it and click 'Add Existing Item'. Choose the image you want.

    Then type in your code:

    PxBx.Image = Image.FromFile("Images\FileName.jpg")
    


  1. Click on your project name in the solution explorer. It will take you to a new "screen" (I don't know how to call it), from the right click on 'Resources', from there you can add your image.

    Then you reference it in your code using:

    PxBx.Image = My.Resources.Filename
    
3
On

You can utilize the Application.StartupPath property and use Path.Combine() to construct a proper path:

PxBx.Image = Image.FromFile(Path.Combine(Application.StartupPath, "Images", "filename.JPG"))