I've a problem with my form, it generates an error. If I delete them, it works fine but the problem becomes a bit buggy.
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")))
this.pictureBox1.Image = ((System.Drawing.Image)
(resources.GetObject("pictureBox1.Image")));
System.ComponentModel.ComponentResourceManager resources =
new System.ComponentModel.ComponentResourceManager(typeof(LYNXAntiCheatForm));
Error msg:
An unhandled exception of type 'System.Resources.MissingManifestResourceException' occurred in mscorlib.dll
Additional information:
Could not find any resources appropriate for the specified culture or the neutral culture. Make sure "LYNXAntiCheat.LYNXAntiCheatForm.resources" was correctly embedded or linked into assembly "LYNXAntiCheatForm" at compile time, or that all the satellite assemblies required are loadable and fully signed.
Question:
How do I really solve this problem without having to delete those three lines of code. I did try to add a resx file called "LYNXAntiCheat"
I use Visual Studio 2012 Express to compile this C# project.