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
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.
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
I was read this lesson but I did understand nothing hhhh ....

https://docs.microsoft.com/en-us/cpp/windows/how-to-create-a-resource-script-file#:~:text=ID%20is%20255%20.-,To%20create%20a%20resource,to%20add%20to%20your%20project.&text=You%20can%20also%20right%2Dclick,Resource%20from%20the%20shortcut%20menu.

and if you have any advices how I can be professional programmer please give it to me sir ❤️
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)
  • Read the question carefully.
  • Understand that English isn't everyone's first language so be lenient of bad spelling and grammar.
  • If a question is poorly phrased then either ask for clarification, ignore it, or edit the question and fix the problem. Insults are not welcome.
  • Don't tell someone to read the manual. Chances are they have and don't get it. Provide an answer or move on to the next question. Let's work to help developers, not make them feel stupid.
  •