Click here to Skip to main content
15,867,308 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
hello everyone !!

please can anyone help me to fix this error in vs 2019 :

<< System.Resources.MissingManifestResourceException: 'Could not find any resources appropriate for the specified culture or the neutral culture. Make sure "CppCLRWinformsProjekt.Form1.resources" was correctly embedded or linked into assembly "Emoji_Keybord" at compile time, or that all the satellite assemblies required are loadable and fully signed.' >>

https://i.postimg.cc/TPBVRj6C/Untitled.png

I'm use vs 2019 .

What I have tried:

just search in google but I found nothing
Posted
Updated 2-Sep-21 2:31am
Comments
Richard MacCutchan 13-Dec-20 11:18am    
The error message is clear. You are trying to load an image from your resource section, but the system cannot find it. Did you create a valid resource named "button1.Image"?
hamza mostakim 14-Dec-20 4:00am    
Thank you so much sir for your reply ...
can you give me some more information ... where I can create one and how ?? please sir .
this is all file in my project :
https://i.postimg.cc/WbJNKz94/Untitled.png
I'm so sorry I'm just a beginner
Richard MacCutchan 14-Dec-20 4:50am    
Use the resource editor to add resources to your project. What you have is an item named button1, with the type declared also as button1:
button1 button1 "face_throwing_a_kiss.png"

But there is no such type as 'button1', you need to use the BITMAP type, which requires the source in .BMP format.

I am not sure whether you are taking a course or teaching yourself. If you are teaching yourself then I suggest you switch to C# which is a much better platform for Windows Forms.
hamza mostakim 14-Dec-20 6:35am    
Okay sir I found sotution Thank you so much ❤️

and yes I'm just teaching myself I want just create something like this by c++ :
https://i.postimg.cc/MTnVX425/Capture.png
I have spoken with guy who created it and he told me he was created it by c# but I want do it by c++ what do you think sir I can or not ?? hhhh
hamza mostakim 14-Dec-20 6:47am    
and Yes I'm just teaching myself .... and I want create something like this by c++ :
https://i.postimg.cc/MTnVX425/Capture.png
I have spoken with guy who created it and he told me he was create it by c# but I want do it by c++ what do you think sir I can or not ??

1 solution

This problem occurs when the default name space of your project mismatch with your Resources.Designer.cs namespace.

In order to resolve this issue -
Right click on project , go to properties check default namespace(it should be same with your Resources.Designer.cs namespace)
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900