Results 1 to 3 of 3

Thread: [RESOLVED] [2005] exporting as an exe

  1. #1

    Thread Starter
    Hyperactive Member
    Join Date
    Feb 2007
    Location
    indiana
    Posts
    341

    Resolved [RESOLVED] [2005] exporting as an exe

    I want to export my program as just an exe. Is there any way to do this within VS 2005 or maybe with a third party program.

    If you know anything about this please speak up.

  2. #2
    Super Moderator jmcilhinney's Avatar
    Join Date
    May 2005
    Location
    Sydney, Australia
    Posts
    111,221

    Re: [2005] exporting as an exe

    First up, this question has been asked and answered many times. I suggest searching the forum before posting.

    Secondly, there is no exporting as an EXE. You can't run your program if it's not an EXE, so you're already creating an EXE every time you run it in the debugger. You can find that EXE in the bin\Debug folder under your project folder. That said, you don't want to distribute a Debug build of of your app, so you need to create a Release build. You do this in VB Express simply by building from the Build menu. In VS you have to change the configuration from Debug to Release on the tool bar first. The Release build can be found in the bin\Release folder under your project folder.
    Why is my data not saved to my database? | MSDN Data Walkthroughs
    VBForums Database Development FAQ
    My CodeBank Submissions: VB | C#
    My Blog: Data Among Multiple Forms (3 parts)
    Beginner Tutorials: VB | C# | SQL

  3. #3

    Thread Starter
    Hyperactive Member
    Join Date
    Feb 2007
    Location
    indiana
    Posts
    341

    Re: [2005] exporting as an exe

    ok thank you sorry for the double posting

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width