how we create exe file in vb.net

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • progvar
    New Member
    • Feb 2008
    • 40

    how we create exe file in vb.net

    Hi
    i want to make a exe file of my project , when i click on "BUILD" menu and then select Build option it works fine but where the exe file is saved i am not getting the location because it does't show any dialog box to set the path for exe. The message at the bottum of the application shows Build Succeded
    please tell me how i will get the exe file


    thanks in advance
    varinder
  • kenobewan
    Recognized Expert Specialist
    • Dec 2006
    • 4871

    #2
    Originally posted by progvar
    Hi
    i want to make a exe file of my project , when i click on "BUILD" menu and then select Build option it works fine but where the exe file is saved i am not getting the location because it does't show any dialog box to set the path for exe. The message at the bottum of the application shows Build Succeded
    please tell me how i will get the exe file


    thanks in advance
    varinder
    A build doesn't necessarily create an exe. What software are you using, framework etc?

    Comment

    • Plater
      Recognized Expert Expert
      • Apr 2007
      • 7872

      #3
      You don't "pick" were you .exe builds (assuming your project is set to a type that produces an exe), it puts it in the bin directory of the project. A few lines above the "build" complete is the location of the path to the file. While I wish they provided a direct link to open that directory, they don't seem to. You can just copy/paste it into the Run menu.

      As a side note, for new projects created:
      If you are using VS2005, the pattern is something like this:
      C:\Documents and Settings\USERNAME\My Documents\Visua l Studio 2005\Projects\SolutionName\ProjectName\bin\Debug\
      or
      C:\Documents and Settings\USERNAME\My Documents\Visua l Studio 2005\Projects\SolutionName\ProjectName\bin\Release\

      For vs2003 I think you take out the \projects\SolutionName\ part.

      Comment

      Working...