Ok, I'm done writing and designing my application. How do I make an EXE of it?
Building it only makes an *.resx file. What is an *.resx file?
Thanx
Printable View
Ok, I'm done writing and designing my application. How do I make an EXE of it?
Building it only makes an *.resx file. What is an *.resx file?
Thanx
Not true look in:
\bin\Debug\ProjectName.exe
I think resx indexes all the images you added to your project not exactly sure.
Thanx I found it. It was called Application*1.exe
Also, you don't want to be compiling a Debug version ultimately, so change the configuration to Release, re-build, then look in the Release folder rather than the Debug folder.
Why not run the debug executable? Where is this option to change it to release instead of Debug? What are the advantages..
The debug executable is larger and runs slower than a release build because it contains a lot of information required for debugging. Also, if a problem occurs it will allow the user to debug it, which is generally not what you want. You use a Debug build while debugging. You release a Release build.Quote:
Originally Posted by OMITT3D
Where do I change this. Thx for the info.
What version of the IDE are you using? VS.NET 2003 you change the configuration on the tool bar. VB 2005 Express you create a Release build by using the Build menu. VS 2005 also has the configuration on the tool bar I think, although I haven't used it so I'm not too sure.
hmm vs 2005 pro. On the build tool bar there is an option for "Build <projectnamehere>"
or
Build solution.
In 2003 or 2005 it's listed right at the top next to the play button. Just change Debug to Release. If you're using express, then it automatically builds both for you.
That would be the Build MENU, not TOOLBAR. You set the configuration using the drop-down list on the tool bar and then build using the menu options.Quote:
Originally Posted by OMITT3D
Using the Build menu creates a Release build. Using the Debug menu, pressing F5 or the Start Debugging tool bar button will create a Debug build.Quote:
Originally Posted by kasracer