9 Replies
send the code
you cant expect me to read it
and the actual problem
Give me a hot sec am on my way to home
alright
and this
👌
Problem seems to be related to not being able to access
Properties
which is how settings are stored in WinForms.
Correction, they're trying to access application resources (images)Here's a relevant SO post
https://stackoverflow.com/questions/4111160/resources-where-to-put-them-and-how-to-reference-them-in-c-sharp
Stack Overflow
Resources, where to put them, and how to reference them in C#
I've worked with C# and other programming languages for a while now, and am ashamed to say I'm unfamiliar with the standard on where to put resources such as program icons, and how to reference them
the
Properties.Resources
path doesn't exist until you create a resource, like the answer says in the StackOverflow post. Also C# is case sensitive, so properties
won't work to access the resources, you have to have an uppercase P
=> Properties
Was this issue resolved? If so, run
/close
- otherwise I will mark this as stale and this post will be archived until there is new activity.