I'm trying to load my company logo as an embedded image into the program, but I'm getting a null stream when I try to save it to my logo
variable. I've looked up examples, and my code seems to be right, but it doesn't work. Is there a way I can check what all my values should be for the string in the second line? Thanks!
var stream = typeof(Program).Assembly.GetManifestResourceStream("[Point Of Sales.vshost.exe].[POS_System.csproj].Images.logo.bmp");
logo = Image.FromStream(stream);