Results 1 to 17 of 17

Thread: How to make a Visual basic project a standard exe?

  1. #1

    Thread Starter
    Lively Member
    Join Date
    Aug 2005
    Posts
    76

    Unhappy How to make a Visual basic project a standard exe?

    hi,
    i have prepared a visual basic project which is completely ready. I need to deliver it to the client in the form of an exe. , since this is my first project i do not have any idea how to prepare a standard exe., so guys i require your help in knowing the steps of preparing an exe.



    regards,
    kaushik

  2. #2
    Lively Member sishe's Avatar
    Join Date
    Aug 2004
    Location
    Izmit/Turkey
    Posts
    115

    Re: How to make a Visual basic project a standard exe?

    Use menu : "File/Make XXXXX.exe"

    But if you want to distribute the application you'll need to prepare an installation script after making the exe file. For this pupose, you can use "Package and Deployment Wizard" which can be found in Visual Studio 6.0 Tools.
    System Halted..
    -----------------------------------------
    Sishe

  3. #3
    Frenzied Member cssriraman's Avatar
    Join Date
    Jun 2005
    Posts
    1,465

    Re: How to make a Visual basic project a standard exe?

    Hi,

    You need to create a package using "Package & Deployment Wizard" which is available in Visual studio 6.0 Tools.
    CS

  4. #4
    Addicted Member mfurqan's Avatar
    Join Date
    Oct 2005
    Location
    Pakistan
    Posts
    176

    Re: How to make a Visual basic project a standard exe?

    hmmm... simply u can go to File Menu and then you wll find an option says Make abc.exe where 'abc' is your primary form name or MDI form if u r using it.......
    Muhammad Furqan Attari.

  5. #5
    I'm about to be a PowerPoster! Hack's Avatar
    Join Date
    Aug 2001
    Location
    Searching for mendhak
    Posts
    58,333

    Re: How to make a Visual basic project a standard exe?

    What edition of VB are you using?

    If it is the Learning edition, I don't believe you can make an .Exe

  6. #6
    PowerPoster Dave Sell's Avatar
    Join Date
    Mar 2004
    Location
    /dev/null
    Posts
    2,961

    Re: How to make a Visual basic project a standard exe?

    You need to buy a 3rd-party software. Here are some:

    http://www.winappslist.com/developer...tion_tools.htm

    There is one that is the most popular but I can't remember the name - go figure...

    Anyway VB6 can make a setup.exe plus a CAB file, but that's 2 files.
    Nobody knows what software they want until after you've delivered what they originally asked for.

    Don't solve problems which don't exist.

    "If I had eight hours to cut down a tree, I'd spend six hours sharpening my axe." --- Abraham Lincoln (1809-1865)

    2 idiots don't make a genius.

  7. #7
    Hyperactive Member Rattled_Cage's Avatar
    Join Date
    Dec 2005
    Posts
    315

    Re: How to make a Visual basic project a standard exe?

    http://support.microsoft.com/?kbid=237803 for free but neat

    or

    http://www.indigorose.com/site/index.php
    set up factory allows you to scan any exe and find all the files dependancys so you can include them too

  8. #8
    Fanatic Member kinjalgp's Avatar
    Join Date
    Apr 2000
    Location
    India
    Posts
    535

    Re: How to make a Visual basic project a standard exe?

    I use Inno Setup. Its really good and easy to use and top of all its FREE
    http://www.jrsoftware.org/isinfo.php

  9. #9
    Banned randem's Avatar
    Join Date
    Oct 2002
    Location
    Maui, Hawaii
    Posts
    11,385

    Re: How to make a Visual basic project a standard exe?

    kaushiks,

    After you create your exe please read Installation Problems in my signature to help avoid serious problems.

  10. #10
    Junior Member
    Join Date
    Dec 2005
    Posts
    23

    Re: How to make a Visual basic project a standard exe?

    Holy Mother of God.

    You people that responded to this thread need to read this thread from start to finish.

    I am going to guess that you probably didnt help him much - as I know a thing or two, and my head is spinning after reading this - you each gave, albiet more or less each correct in their own unique way, a completely different answer than each other - and thats hard with the amount of responses - damn

    Though, I will give that the reason that you all probably gave so many different answers, is cause you got asked a very a generic question with no details.

    Info like -

    1) What version of VB are you using?
    2) Did you use an non-standard components that would need to be accounted for?


    Actually, a better question might be.

    3) How the hell did you get a client, when you dont know how to make an executable?

  11. #11
    Elite Hacker Jacob Roman's Avatar
    Join Date
    Aug 2004
    Location
    Miami Beach, FL
    Posts
    5,349

    Re: How to make a Visual basic project a standard exe?

    Quote Originally Posted by Hack
    What edition of VB are you using?

    If it is the Learning edition, I don't believe you can make an .Exe
    On the contrary, I have learning edition and can make exes. I just can't control how it's compiled, so it ends up always being P-Code rather than giving me the choice of either P-Code or Native code.

  12. #12
    Banned dglienna's Avatar
    Join Date
    Jun 2004
    Location
    Center of it all
    Posts
    17,901

    Re: How to make a Visual basic project a standard exe?

    If you have a better response, make sure that you post it. I'm sure that he will read them all, and probably ask a few more questions. I think you should read a few more threads in this forum. We come in all shapes, sizes, and flavors, so we have to adjust to everyone's questions as best we can. Often each person interprets a question differently. It narrows down the problem.

  13. #13
    PowerPoster Dave Sell's Avatar
    Join Date
    Mar 2004
    Location
    /dev/null
    Posts
    2,961

    Re: How to make a Visual basic project a standard exe?

    Quote Originally Posted by ZachFSW
    Holy Mother of God.

    You people that responded to this thread need to read this thread from start to finish.

    I am going to guess that you probably didnt help him much - as I know a thing or two, and my head is spinning after reading this - you each gave, albiet more or less each correct in their own unique way, a completely different answer than each other - and thats hard with the amount of responses - damn

    Though, I will give that the reason that you all probably gave so many different answers, is cause you got asked a very a generic question with no details.

    Info like -

    1) What version of VB are you using?
    2) Did you use an non-standard components that would need to be accounted for?


    Actually, a better question might be.

    3) How the hell did you get a client, when you dont know how to make an executable?
    I read original poster's question thouroughly - his boss asked for the project to be available in a single executable installation format. VB6 does not offer this by default. There is a popular 3rd party toll to do this but I can't remember it's name....

    I also mentioned that VB6 offers a setup.exe plus a single .CAB file built into VB6. If this would suffice then he should use it.
    Nobody knows what software they want until after you've delivered what they originally asked for.

    Don't solve problems which don't exist.

    "If I had eight hours to cut down a tree, I'd spend six hours sharpening my axe." --- Abraham Lincoln (1809-1865)

    2 idiots don't make a genius.

  14. #14
    Banned dglienna's Avatar
    Join Date
    Jun 2004
    Location
    Center of it all
    Posts
    17,901

    Re: How to make a Visual basic project a standard exe?

    Inno Script and Inno Setup can be used to create a setup.exe
    Look at www.*********** for information on deployment.

  15. #15
    I'm about to be a PowerPoster! Hack's Avatar
    Join Date
    Aug 2001
    Location
    Searching for mendhak
    Posts
    58,333

    Re: How to make a Visual basic project a standard exe?

    Quote Originally Posted by Jacob Roman
    On the contrary, I have learning edition and can make exes. I just can't control how it's compiled, so it ends up always being P-Code rather than giving me the choice of either P-Code or Native code.
    Really??!! I didn't know you could do that. I've never used the Learning Edition before, but I know I've seen posts on this forum that have stated you can't make .Exes with it. This is good to know and will be filed away for future reference.

  16. #16
    Fanatic Member esposito's Avatar
    Join Date
    Sep 2003
    Location
    Perugia, Italy
    Posts
    961

    Re: How to make a Visual basic project a standard exe?

    Quote Originally Posted by Hack
    Really??!! I didn't know you could do that. I've never used the Learning Edition before, but I know I've seen posts on this forum that have stated you can't make .Exes with it. This is good to know and will be filed away for future reference.
    This means there are different VB6 Learning Editions because, in the one I have, the Make exe option is not active.

  17. #17
    New Member
    Join Date
    Aug 2010
    Posts
    1

    Re: How to make a Visual basic project a standard exe?

    If you usin' vb6 i don't know ... Try to publish it,go in folder "aplication data" (you publish this folder)and rename your ["program name.exe.deploy"] to ["program name .exe"] just clear ".DEPLOY"

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