Bonjour à tous !!
ben voila je me lance dans le c++ .Net .
en essayant de compiler mon 1er prog j ai l erreur
prog1 fatal error LNK1561: entry point must be definedMon code est ci dessous
#using <mscorlib.dll>
#using <System.DLL>
#using <System.Drawing.DLL>
#using <System.Windows.Forms.DLL>
using namespace System;
using namespace System::Drawing;
using namespace System::Windows::Forms;
__gc class form : public Form
{
public:
form();
~form();
};
form::form()
{
//creation resource
Resources::ResourceManager *res = new Resources::ResourceManager (S"UserControl1", Reflection::Assembly::GetExecutingAssembly());
}
int _tmain(void)
{
Application::Run( new form() );
return 0;
}
quelqu un a une idee.. ?
Merci
Yafuka ( * _ * ) 