When I add an icon to a form in managed cobol. I'm getting a MissingManifestResourceException exception. It said 'Could not find any resources appropriate for the specified culture or the neutral culture. Make sure "AppForm.resources" was correctly embedded or linked into assemblies required are loadable and fully signed.'. Not sure how to embed or link the icon resource into the assemblies and make it loadable. Can someone help? Thanks!
 
Sammy
Is your icon located in the Resources folder of your project?
If it is then right-click on the icon name in Solution Explorer and select Properties. Change the property "Build Action" to Embedded Resource and rebuild.
Does this solve the problem?
                
     
                                    
            Is your icon located in the Resources folder of your project?
If it is then right-click on the icon name in Solution Explorer and select Properties. Change the property "Build Action" to Embedded Resource and rebuild.
Does this solve the problem?
No. I just copied the icon file into the project folder and selected the file in form's icon property. How do I create a Resources folder with the icon file for my project?