I created a Windows Forms project according to this instruction, but as a result I get an error (see screenshot). Who has already encountered such a problem?
And here's the code that is written in MyForm.cpp
#include "MyForm.h" using namespace System; using namespace System::Windows::Forms; [STAThreadAttribute] void Main(array<String^>^ args) { Application::EnableVisualStyles(); Application::SetCompatibleTextRenderingDefault(false); Calculator::MyForm form; Application::Run(%form); } 
Mainshould be written with a small letter :) - Harry^??? Is this a new C ++ standard ?? - vegorov