Dost Arora
Dost Arora

Reputation: 355

MFC dialog window does not appear

I am just learning to create MFC applications in visual studio 2017. I have made a new default project of MFC dialog based application. After completing the steps of MFC application wizard, visual studio shows up to this:

State.

At this point I have not changed any of the code or settings.

Now how do I get the dialog window as shown in:

here

I have tried rebuilding the solution, but it does not work.

Upvotes: 3

Views: 3674

Answers (1)

Andrew Truckle
Andrew Truckle

Reputation: 19087

I am not sure if I am answering correctly.

  • Click on the View menu.

  • Then click on Other Views.

  • Now click Resource View

Resource View

Or press Ctrl + Shift + E

Now you have the Resource View:

Resource View Tab

If you click that you see all resources:

Resource Editor

That is how you get to your dialogues.

If you have created a secondary dialog and you want that to start instead of the default, then look at my answer here about using InitInstance.

Upvotes: 7

Related Questions