Reputation: 1274
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
Upvotes: 0
Views: 941
Reputation: 6678
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.
Upvotes: 2