The Visual Studio dialog editor manages dialogs using their resource identifier (ID). What you see as the dialog Name in the property page is only a display name based on the dialog ID. If you change the dialog ID the display name will change accordingly.
For example, create the multi_dialog_4 application as described above -
Notice that the initial dialog had IDD_MULTI_DIALOG_4_DIALOG (based on the project name) as its initial dialog.
Display the dialog properties -
As you can see, the "Name" is based on the dialog's ID and cannot be directly edited.
Now in the property page lets change the dialog ID to IDD_MULTI1 -
At this point the dialog ID has been changed but the VS dialog editor has not refreshed the displayed "Name" yet.
To have VS refresh the display "Name" first click the dialog id in the Resource View --
Now click back on the dialog image to show the property page again -
Now the displayed "Name" has been refreshed.
And adding a new dialog as described above -
If you change the new dialog's default ID from IDD_DIALOG1 to something else that you prefer you now know how to see that change reflected in the dialog editor.
To reopen a closed dialog double-click on its ID in the resource view.