where are dialog box saved on disk

Hi all,
I just wanted to know that when we a make a dialog based application where are dialogs saved on disk as we have bmps saved in our res folder.
Thanks in advance
[185 byte] By [VCProgrammer] at [2007-11-20 11:36:12]
# 1 Re: where are dialog box saved on disk
The description of a dialog box is usually saved in ".rc" or ".res" file.
When a project is linked, the dialog box description is placed in the ".exe" file, in a special section, near the beginning.
There are softwares that can extract icons, dialogbox descriptions, and other resource items, from an ".exe" file.
olivthill at 2007-11-10 22:24:59 >
# 2 Re: where are dialog box saved on disk
The dialog box is a resource inside your executable, it's not stored on disk separately.
Krishnaa at 2007-11-10 22:25:57 >
# 3 Re: where are dialog box saved on disk
Hi i think,

In the source code, the definition of dialog template is stored in the .rc file.
When exe is buil, this defenition will become a part of exe file.

Thanks
Prasanth
star@1983 at 2007-11-10 22:27:07 >