Results 1 to 7 of 7

Thread: What files are used with the Inet tool?

  1. #1

    Thread Starter
    Fanatic Member
    Join Date
    Oct 2009
    Location
    Missouri
    Posts
    770

    What files are used with the Inet tool?

    I can't find all the files with it. I want to put it with the project and have the project use it... But on the computers that doesn't have the files, it doesn't work.. Please help. The main file is msinet.ocx i think. PLZ HELP! =D
    Rate my post if i helped you!


    Button Configuration Control For VB6 GetAsyncKeyState
    I'm the 7th best high school programmer in the nation!(according to SkillsUSA Nationals)(Used C#.Net)

  2. #2
    PowerPoster RhinoBull's Avatar
    Join Date
    Mar 2004
    Location
    New Amsterdam
    Posts
    24,132

    Re: What files are used with the Inet tool?

    You need to build distribution package using utility similar to Package and Deployment Wizard (it comes with VB6).
    When you do that all libraries, components used in the project will be included. Configuration files, excel files, ms access db, etc may need to be added manually (wizard has screen for that as well).

  3. #3

    Thread Starter
    Fanatic Member
    Join Date
    Oct 2009
    Location
    Missouri
    Posts
    770

    Re: What files are used with the Inet tool?

    Yeah... I know that.... I need to know what files go with it...
    Rate my post if i helped you!


    Button Configuration Control For VB6 GetAsyncKeyState
    I'm the 7th best high school programmer in the nation!(according to SkillsUSA Nationals)(Used C#.Net)

  4. #4
    PowerPoster
    Join Date
    Jul 2006
    Location
    Maldon, Essex. UK
    Posts
    6,334

    Re: What files are used with the Inet tool?

    Under normal conditions you don't need to know. When you run the PDW it works out all the dependency information for you and includes all the necessary files into the appropriate CAB files(s)

  5. #5
    PowerPoster RhinoBull's Avatar
    Join Date
    Mar 2004
    Location
    New Amsterdam
    Posts
    24,132

    Re: What files are used with the Inet tool?

    Quote Originally Posted by Gamemaster1494 View Post
    Yeah... I know that...
    If you do then best way to find out is to build distribution package...
    If you use P&DW then open Support folder (typically under Package folder) - it has all the files; you maybe surprised to see how many dependencies your project has.

  6. #6

    Thread Starter
    Fanatic Member
    Join Date
    Oct 2009
    Location
    Missouri
    Posts
    770

    Re: What files are used with the Inet tool?

    Ah. Its the .dep file, right? So my project will use that instead of searching the computer for the components it needs?
    Rate my post if i helped you!


    Button Configuration Control For VB6 GetAsyncKeyState
    I'm the 7th best high school programmer in the nation!(according to SkillsUSA Nationals)(Used C#.Net)

  7. #7
    PowerPoster dilettante's Avatar
    Join Date
    Feb 2006
    Posts
    24,487

    Re: What files are used with the Inet tool?

    The PDW looks at your .VBP file to determine the project's dependencies. Then it looks in each required library's .DEP file to find out what each of them are dependent on, and so on. When there is no .DEP file you must manually include any subdependencies.

    If you use late binding to any libraries the project will not contain dependency information about them. So you must manually include these libraries and anything they in turn are dependent upon.


    In general you do not want to package versions of dependency libraries from the running system. This is why the PDW has its Redist folder. If it finds a library in Redist it will use that copy instead of taking the version from the running system.

    If you package from the running system (System32, etc.) you risk deploying wrong versions of the libraries to systems they won't run on. Lots of libraries have been updated to work on newer versions of Windows and will fail if deployed to a downlevel system.

    Most people ignore this, and they mostly get away with it (until suddenly they don't). Remember that VB6 programs were only expected to be deployed to Windows 95, 98, and NT 4.0. To handle modern systems you may be forced to do a bit of maintenance on the PDW's files and folders.

    Best practices for deploying Visual Basic 6.0 applications
    If the Package and Deployment Wizard does not locate the required files in the Redist folder, it tries to locate the files in other folders, such as the System32 folder. This behavior may cause problems because your operating system may contain versions of system files that are not compatible with earlier operating systems. Therefore, make sure that the Redist folder contains the correct versions of any files that the Package and Deployment Wizard copies from your system.

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