Can not find the way how to create unmanaged visual C++ project in MS Visual Studio 2010. I select Visual C++ -> CLR -> Windows Form Applications. If it is already unmanaged, to get access to the textBox, i need to type textBox->Text, but this is the trait of managed, unmaged uses textBox.Text instead
Share
There is no unmanaged Windows Forms project type. Windows Forms is part of the .NET Framework.
If you want an application for creating UIs in unmanaged C++, choose one of the MFC project types.