bhushan1980
August 11th, 2007, 04:47 AM
I created a Visual C++/CLI windows forms project using VS 2005 team edition and it is giving me some 8-10 errors all related to MessageBox saying that MessageBox is not the member of the name space! I tried including -
using namespace System::Windows::Forms::MessageBox;
as well as I tried using
System::Windows::Forms::MessageBox::Show(L"My sentences");
to give complete navigation of namespaces where ever I had to use a MessageBox call.
But none of them were useful. Am I missing something to be declared? or reference? Or do I have to change some directory or code?
Thank you,
Bhushan.
using namespace System::Windows::Forms::MessageBox;
as well as I tried using
System::Windows::Forms::MessageBox::Show(L"My sentences");
to give complete navigation of namespaces where ever I had to use a MessageBox call.
But none of them were useful. Am I missing something to be declared? or reference? Or do I have to change some directory or code?
Thank you,
Bhushan.