Visual Basic Concepts

Files You Need to Distribute

The first step in creating a custom setup program is to determine which files to distribute. All Visual Basic applications need a minimum set of files, referred to as bootstrapfiles, that are needed before your application can be installed. In addition, all Visual Basic applications require application-specific files, such as an executable file (.exe), data files, ActiveX controls, or .dll files.

There are three main categories of files needed to run and distribute your application:

  • Run-time files

  • Setup files

  • Application-specific files

Run-Time Files

Run-time files are files your application must have in order to work correctly after installation. These files are needed by all Visual Basic applications. The following are the run-time files for Visual Basic projects:

  • Msvbvm60.dll

  • Stdole2.tlb

  • Oleaut32.dll

  • Olepro32.dll

  • Comcat.dll

  • Asycfilt.dll

  • Ctl3d32.dll

While these files are needed by all Visual Basic applications, they may not be necessary for every type of installation package. For example, when creating an Internet package, the Package and Deployment Wizard assumes that any computer capable of performing an Internet download already has all of these files except for Msvbvm60.dll. Therefore this is the only run-time file that the wizard includes in an Internet package.

Note   Run-time files can be further classified by their installation location. See "Where to Install Files on the User's Machine" for more information.

Setup Files for Standard Packages

Setup files are all of the files required to set up your standard application on the user's machine. These include the setup executables (setup.exe and setup1.exe), the setup file list (Setup.lst), and the uninstall program (st6unst.exe).

Visual Basic applications that are designed to be distributed on disk, on CD, or from a network location use the same setup files, regardless of whether you use the Package and Deployment Wizard or the Setup Toolkit to create your setup programs. These files are listed below.

File name Description
setup.exe Program that the user runs to pre-install the files that are needed for your application to be installed on the user's machine. For example, the setup.exe file installs the setup1.exe file, the Visual Basic run-time DLL, and other files without which the rest of the setup process cannot run.
setup1.exe The setup program for your Visual Basic application. This executable file is generated by the Setup Toolkit and included in the package by the Package and Deployment Wizard. You can rename this file as long as the new name is reflected in the Setup.lst file.
Setup.lst Text file that contains installation instructions and lists all the files to be installed on the user's machine.
Vb6stkit.dll Library containing various functions used in Setup1.exe.
St6unst.exe Application removal utility.

Note   Applications designed to be delivered over the Internet generally do not use any of these files. See "Internet Packages" earlier in this chapter for more information on the files involved in Internet delivery.

Application Dependencies

In order to run your application, end users will need certain files in addition to the common run-time files and special setup files. Many of these files will be obvious to you: the executable file, any data files, and any ActiveX controls that you used. The less obvious files are your project's other dependent files. For example, some of the ActiveX controls used by your project may in turn require other files. One of the tasks of the Package and Deployment Wizard is to determine the complete list of such required files.

For More Information   See "Dependency Files" earlier in this chapter for information on using the Package and Deployment Wizard to create dependency files for your application.