Results 1 to 8 of 8

Thread: EXtra files for compilation and deployment!

  1. #1

    Thread Starter
    Hyperactive Member
    Join Date
    Sep 2004
    Location
    Manchester
    Posts
    266

    EXtra files for compilation and deployment!

    When compiling my program I am aware that I will need to provide extra files with it.
    However, I don't want to use the package and deployment wizard so how do I know what files I will need to give with my program?

    Jord

  2. #2
    Addicted Member prophecy's Avatar
    Join Date
    Mar 2005
    Location
    In the developers list of Visual Basic ;-)
    Posts
    242

    Re: EXtra files for compilation and deployment!

    well......first u certainly need to ensure dat they have vbRuntime files....or u can get a list of all the files required for ur application to run.... in one of the steps of package and deployment wizard..

    once u knw the files and activeX u need to include... u can supply it with a setup file or make a zip file /self-extractor for it!
    Got You! - ©
    - My Signature.
    Visit www.compzone.hhnf.com. If you think i helped you, add to my reputation by Clicking "Rate This Post".

  3. #3
    Hyperactive Member
    Join Date
    Apr 2004
    Location
    Philippines
    Posts
    285

    Re: EXtra files for compilation and deployment!

    hi i also do not want to use package and deployment wizard because it's so lame. i'm using inno script and inno setup. they are much better than p&d. inno script is a freeware, it will automatically get all the files needed by your program to run in other systems. you can then use inno setup to package all the files into one file. inno setup also has a great UI for the setup

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

    Re: EXtra files for compilation and deployment!

    Quote Originally Posted by intraman
    When compiling my program I am aware that I will need to provide extra files with it.
    However, I don't want to use the package and deployment wizard so how do I know what files I will need to give with my program?

    Jord
    If you don't want to use the Package and Deployement Wizard, what setup/installation package are you going to use?

    You can't just copy the files to another PC and have them work. There is a two step process involved: One...copy the files Two...register the files with the OS. Unless you want to sit down at each and every PC and one by each, manually register all of the dependency files required for your program to work on another work station, some form of installation package will be required.

  5. #5
    Addicted Member prophecy's Avatar
    Join Date
    Mar 2005
    Location
    In the developers list of Visual Basic ;-)
    Posts
    242

    Re: EXtra files for compilation and deployment!

    hmm..registering the files... ive noticed dat if the activex controls are put in same folder as the program it also works else put it in system or sytem32 folder
    Got You! - ©
    - My Signature.
    Visit www.compzone.hhnf.com. If you think i helped you, add to my reputation by Clicking "Rate This Post".

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

    Re: EXtra files for compilation and deployment!

    Quote Originally Posted by prophecy
    hmm..registering the files... ive noticed dat if the activex controls are put in same folder as the program it also works else put it in system or sytem32 folder
    Regardless of where they are put, they still have to be registered.

    Unless, of course, they already exist on the PC and are already registered. But, if this is the case, they don't need to be included in a roll out.

  7. #7
    New Member sandip's Avatar
    Join Date
    Jun 2005
    Location
    Navi Mumbai,India
    Posts
    15

    Re: EXtra files for compilation and deployment!

    Hello,
    Take needed dll list from Project --> References and ocx from Project --> Components.
    copy these files in one folder and make one batch file to register all these files using command

    regsvr32/s /u scrrun.dll
    regsvr32/s /u Toolbar2.ocx
    regsvr32/s /u MSWINSCK.OCX
    regsvr32/s /u MSFLXGRD.OCX

    Your app will definitely run.
    Sandip

  8. #8

    Thread Starter
    Hyperactive Member
    Join Date
    Sep 2004
    Location
    Manchester
    Posts
    266

    Re: EXtra files for compilation and deployment!

    Quote Originally Posted by Hack
    Regardless of where they are put, they still have to be registered.
    When you say they have to be registered.......
    What do you mean? Strings in the registry?
    If so, what will registering files achieve?

    Thanks,
    Jord

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