Results 1 to 5 of 5

Thread: Programs which do not need to be installed

  1. #1

    Thread Starter
    Hyperactive Member
    Join Date
    Sep 2001
    Posts
    396

    Question Programs which do not need to be installed

    In the past, I came across some simple windows games which do not need to be installed. They are quite small in size also.

    I wrote a simple program in VC and took it to a computer without VC and it prompt me that it cannot find some dll.

    So my question is how to write programs which do not need to be installed to execute.
    I'm a VB6 beginner.

  2. #2
    I'm not sure but it may be making a reference to the (supposedly evil) MFC; if you write your project without having such a dependency then they would be true standalone EXEs.

  3. #3
    jim mcnamara
    Guest
    Actually it has to do with how you link a file. If you link ANY C++
    code statically, it will make a small (or really huge) exe that has all of the link libraries buried inside. It needs no external references to be resolved at runtime. Some code won't link statically, then you are out of luck- you have to use installation software.

    'Course - no code ever fits on a single floppy. Maybe on 8-10 of 'em. Murphy's Law of Floppy Distribution?

  4. #4

    Thread Starter
    Hyperactive Member
    Join Date
    Sep 2001
    Posts
    396
    Originally posted by jim mcnamara
    Murphy's Law of Floppy Distribution?
    Or Jim's Law?
    I'm a VB6 beginner.

  5. #5
    Addicted Member
    Join Date
    Aug 2001
    Location
    I'm mobile
    Posts
    166
    Hehe......sounds more like Jim's law to me........

    "The Standard Floppy Distribution law´", produced by Jim Mcnamara.......
    [p r a e t o r i a n]

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