CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 4 of 4
  1. #1
    Join Date
    Mar 2003
    Location
    vijayawada,ap,india.
    Posts
    26

    how to create setup file for my vc++ exe file

    hi

    my question is
    how to create setup file for my vc++ exe file.


    Waiting for your valuable reply.

    bye
    Mahesh

  2. #2
    Join Date
    Jan 2003
    Posts
    15

    What do u want the setup to do?

    Why do u need a setup file in the first place?

    Do ur application has supporting files (dll,txt,mdb...) and u need a program to copy those files? Do u want to create shortcuts/program groups?

    Anyway you can try, InstallShield that comes with VisualStudio...
    You can also try Setup Specialist. This is really a good utility.

    Regards,
    Mahesh

  3. #3
    Join Date
    May 2002
    Posts
    52
    Download freeware innosetup in www.innosetup.com.
    It's a great tool.

  4. #4
    Join Date
    Mar 2003
    Location
    Regensburg, Bavaria
    Posts
    48
    Do u mean a setup-programm that will install ur application,
    or do u mean a file, where u can save ur application settings?
    In the last case, handle the problem with .ini files. It is
    simple to use...
    Try:
    ReadProfileString(...);
    WriteProfileString(...);
    ReadProfileInt(...);
    WriteProfileInt(...);

    For more information, look up MSDN

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

Featured