Thread: packaging

  1. #1
    Registered User
    Join Date
    Oct 2001
    Posts
    10

    Unhappy packaging

    I finished writting a program in Visual C++6.
    What i want to do now is package it so i can give it to
    others. I want to make it installable. With the blue screen and everything.

    Does anyone know how to do that or anyone know a good tutorial for that?
    #include <iostream.h>
    void main(void){
    char t[7] = "Thanks";

    cout<< t <<endl;
    }

  2. #2
    Former Member
    Join Date
    Oct 2001
    Posts
    955
    there's an app called InstallShield, it comes with VC, try and use it.

    Oskilian

  3. #3
    Banned master5001's Avatar
    Join Date
    Aug 2001
    Location
    Visalia, CA, USA
    Posts
    3,685
    I don't know about manually coding one but Dev-C++ has one too that I know works.

  4. #4
    Registered User
    Join Date
    Oct 2001
    Posts
    10
    Thanks Guys
    #include <iostream.h>
    void main(void){
    char t[7] = "Thanks";

    cout<< t <<endl;
    }

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Java: Packaging Self-running Jar
    By alphaoide in forum Tech Board
    Replies: 1
    Last Post: 06-29-2005, 10:31 PM
  2. Packaging ...
    By Helix in forum Windows Programming
    Replies: 2
    Last Post: 05-31-2004, 07:35 AM
  3. Packaging (under Linux and Windows)
    By Danamin in forum Game Programming
    Replies: 7
    Last Post: 01-17-2004, 01:16 AM