Click here to Skip to main content
15,909,325 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
how to make .exe
i m trying to make exe but i m facing more error
any other way to make exe
Posted
Comments
Kim Togo 25-May-11 4:15am    
What errors are you getting ?
vishnu rabari 25-May-11 6:04am    
can u tell me what are the steps after making application
from where i have to start work for make exe
vishnu rabari 25-May-11 6:25am    
the selected file is not .net assembly. this is not a managed module
Abhinav S 25-May-11 4:42am    
No one can help you until you tell us what the error is?
vishnu rabari 25-May-11 6:04am    
can u tell me what are the steps after making application
from where i have to start work for make exe

To find the .exe file for your project. Look under "..\bin\Debug" or "..\bin\Release" folder.
 
Share this answer
 
You don't have to do anything special to generate an exe for windows application when you will complile the project it will automatically build the exe and place it in build folder. By default the build folder for debug is "bin\debug" and for release it's "bin\release" as @Kim explained.

Now for the exception you are getting you need to add that exception message to your solution so that other can understand what error you are getting while building the .exe?

Thanks,
hemant
 
Share this answer
 
 
Share this answer
 
There is not way to build and run any application without creating an executable file. Start with fresh project created from template and build it immediately before touching anything. It will immediately create the executable file. You can run it.

Since that moment, every your modification of the code or addition to the code can be used be a hostile compiler against you. :-) Write only what you completely understand. Remember, project template already gave you something that compiles into executable and runs from the very beginning. Is you spoil it later, it's totally your responsibility.

—SA
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900