I am attempting to add a .PNG image to a PictureBox, but it does not seem to be reading it.
public static String NoteImage_path = Environment.CurrentDirectory + @"\Notes-Images\";
ImageLocation = NoteImage_path + "test" + ".png";
With this exact code, I had no issues adding a .BMP file, so why is there an issue with the .PNG file?
Any help will be appreciated. Thanks!