Thread: Stand alone application (BCPPB6.0)

  1. #1
    Registered User
    Join Date
    Aug 2005
    Posts
    31

    Question Stand alone application (BCPPB6.0)

    Hello. I am using C++ Builder 6.0 and I would like to create a stand alone app. Could you please tell me which files to include in the installation and where to put them. Thank you very much.

  2. #2
    Frequently Quite Prolix dwks's Avatar
    Join Date
    Apr 2005
    Location
    Canada
    Posts
    8,057
    You mean, which runtime libraries you need?

    Are you creating a console application or a Windows one? If you're just making a console application, you probably don't need any runtime libraries.
    dwk

    Seek and ye shall find. quaere et invenies.

    "Simplicity does not precede complexity, but follows it." -- Alan Perlis
    "Testing can only prove the presence of bugs, not their absence." -- Edsger Dijkstra
    "The only real mistake is the one from which we learn nothing." -- John Powell


    Other boards: DaniWeb, TPS
    Unofficial Wiki FAQ: cpwiki.sf.net

    My website: http://dwks.theprogrammingsite.com/
    Projects: codeform, xuni, atlantis, nort, etc.

  3. #3
    Registered User
    Join Date
    Aug 2005
    Posts
    31
    Windows. And yes I meant libraries.
    Last edited by MiraX33; 01-18-2006 at 12:12 PM. Reason: Spelling mistake

  4. #4
    Frequently Quite Prolix dwks's Avatar
    Join Date
    Apr 2005
    Location
    Canada
    Posts
    8,057
    Well then, get a dependency walker. It will show you everything a program needs.

    Google will find one for you. Or you can search this board -- I remember this coming up before. Or, if you have MSVC, you already have a dependency walker. It's in something like tools/win95.
    dwk

    Seek and ye shall find. quaere et invenies.

    "Simplicity does not precede complexity, but follows it." -- Alan Perlis
    "Testing can only prove the presence of bugs, not their absence." -- Edsger Dijkstra
    "The only real mistake is the one from which we learn nothing." -- John Powell


    Other boards: DaniWeb, TPS
    Unofficial Wiki FAQ: cpwiki.sf.net

    My website: http://dwks.theprogrammingsite.com/
    Projects: codeform, xuni, atlantis, nort, etc.

  5. #5
    Frequently Quite Prolix dwks's Avatar
    Join Date
    Apr 2005
    Location
    Canada
    Posts
    8,057
    Here: http://cboard.cprogramming.com/searc...earchid=306433

    Both of the bottom links are good. (The top one is this thread.) http://www.dependencywalker.com/
    dwk

    Seek and ye shall find. quaere et invenies.

    "Simplicity does not precede complexity, but follows it." -- Alan Perlis
    "Testing can only prove the presence of bugs, not their absence." -- Edsger Dijkstra
    "The only real mistake is the one from which we learn nothing." -- John Powell


    Other boards: DaniWeb, TPS
    Unofficial Wiki FAQ: cpwiki.sf.net

    My website: http://dwks.theprogrammingsite.com/
    Projects: codeform, xuni, atlantis, nort, etc.

  6. #6
    Registered User
    Join Date
    Aug 2005
    Posts
    31

    Talking

    Thank you very much. You have really helped me a lot.

  7. #7
    chococoder
    Join Date
    Nov 2004
    Posts
    515
    Whatever happened to RTFM?

    I quote (from the BCB4 helpfile):
    When you finish coding your application and are ready to deploy it, you need to determine which files to include to make it run. These files are called redistributable files.
    Refer to the file DEPLOY.TXT in the main C++Builder directory for a list of files that you can redistribute in accordance with the Non-Nonsense License Statement. DEPLOY.TXT lists the files associated with each application option and specifies where the files need to be installed. Detailed information about deploying applications is located in Deploying applications.

    If you have the Professional or Enterprise edition of C++Builder, you can also use InstallShield to help prepare an install program for your application. InstallShield provides options to help you determine and include appropriate redistributable files.
    There is also a complete section in the helpfiles about deploying your application, split out into several parts for different types of applications.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Cleanup of the application...
    By Petike in forum Windows Programming
    Replies: 1
    Last Post: 08-16-2008, 05:23 PM
  2. Problem with com application
    By amardon in forum C++ Programming
    Replies: 3
    Last Post: 10-06-2005, 05:50 AM
  3. MFC run application by clicking on file...
    By dug in forum Windows Programming
    Replies: 4
    Last Post: 12-02-2004, 04:33 AM
  4. Win application not very portable
    By swed in forum Windows Programming
    Replies: 5
    Last Post: 10-01-2001, 11:17 AM