Visual Studio Ultimate 2012 - 必须定义入口点。
您好。我有文件:
MyForm.h
Forma.h
MyForm.cpp
在Myform.cpp中我有
#include "MyForm.h"
using namespace std;
using namespace System;
using namespace System::Windows::Forms;
void main(array<String^>^args){
Application::EnableVisualStyles();
Application::SetCompatibleTextRenderingDefault(false);
Project1::MyForm form;
Application::Run(%form);
}
但是当我试图重新发现它时,我有错误:
错误2错误LNK1561:必须定义入口点
答案 0 :(得分:5)
我相信,您的问题的答案分两步:
答案 1 :(得分:0)
#include "MyForm.h"
#include <Windows.h>
using namespace System;
using namespace System::Windows::Forms;
using namespace testing;
//go to MyForm.h and look for [namespace ****] where **** is the name of your project..mines name is testing. :)
STAThreadAttribute;
void main(){
Application::EnableVisualStyles();
Application::SetCompatibleTextRenderingDefault(false);
Application::Run(gcnew MyForm());
}