compile error in IDE generated code
c:\documents and settings\wims\desktop\careertool.net_0.3_wip\careertool.net\Form1.h(1237) : error C2440: '=' : cannot convert from 'const wchar_t
Reason: cannot convert from 'const wchar_t *' to 'System::Windows::Forms::DataGridViewTextBoxColumn ^'
No user-defined-conversion operator available, or
Cannot convert an unmanaged type to a managed type
Line 1237 of my application looks like this :
this->Name = L"Form1";
This line have been generated by the IDE automatically.
Why do i get this error?
When I remove the line from my code it compiles, but during my next compile i get the same erro, and the IDE have generated the code again. So how do i get rid of this error?

