Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

C++.Net Open Window Form

Status
Not open for further replies.

schwarem

Programmer
Apr 18, 2002
159
0
0
US
I have been forced to use C++ to create a GUI for an application. I normally use VB.Net or C#. I cannot open a form from the main form. Here is the code I am using.

Code:
frmNewScenario * NewScenario = new frmNewScenario();
NewScenario->ShowDialog();

It says frmNewScenario is an undeclared identifier. How do I get it to see my other form to recognize it as an identifier?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top