How to create Window Form EXE? Well I know that I make a class that extends System::Windows::Forms::Form and it has an entry like this:
#ifdef _UNICODE
int wmain(void)
#else
int main(void)
#endif
{
Application::Run(new MyForm());
return 0;
}
But I don't want to see cansole window. All I want is just runable exe. How to do this?
#ifdef _UNICODE
int wmain(void)
#else
int main(void)
#endif
{
Application::Run(new MyForm());
return 0;
}
But I don't want to see cansole window. All I want is just runable exe. How to do this?