home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 10 / 10.iso / l / l410 / 2.ddi / SETUPKIT / README.TX$ / README.bin
Encoding:
Text File  |  1992-02-13  |  3.3 KB  |  93 lines

  1.                  README.TXT
  2.  
  3.                The Setup Kit for Visual Basic 
  4.  
  5. Contents
  6. ----------------------------------------------------------------
  7. Topic 1:   Overview
  8. Topic 2:   How to create a setup disk to install TESTAPP.EXE
  9. ----------------------------------------------------------------
  10.  
  11.  
  12. Topic 1: Overview
  13. ----------------------------------------------------------------
  14. The Visual Basic Setup Kit provides the tools necessary to write 
  15. professional setup programs using Visual Basic. The Setup Kit 
  16. allows you to:
  17.  
  18. *       Pre-install the Visual Basic runtime .DLL on your customer's system.
  19. *       Install files using a single API function call.
  20. *       Install files into the appropriate Windows directories (\WINDOWS, 
  21.     \WINDOWS\SYSTEM) regardless of the actual directory names.
  22. *       Use Windows version stamping resources to determine if a file 
  23.     should be copied to the customer's machine.
  24. *       Create Windows Program Manager groups and icons for your application.
  25. *       Create a customized look and feel for your setup program.
  26.  
  27. *******************************************************************
  28. NOTE:  For detailed documentation on the Setup Kit, see the 
  29.        SETUPKIT.HLP Windows Help file located in the SETUPKIT 
  30.        directory.
  31. *******************************************************************            
  32.  
  33.  
  34.  
  35. Topic 2:  How to Create a Setup Disk for TESTAPP.EXE
  36. ----------------------------------------------------------------------
  37. Follow these steps to create a floppy disk that uses the Setup Kit to 
  38. install TESTAPP.EXE:
  39.  
  40.  
  41. 1. Copy the Setup Kit files to a blank floppy:
  42.  
  43.     File            Location
  44.     ------------    ---------------------
  45.     SETUP.EXE       \VB\SETUPKIT\KITFILES
  46.     SETUP.LST       \VB\SETUPKIT\KITFILES
  47.     SETUP1.EXE      \VB\SETUPKIT\SETUP1
  48.     SETUPKIT.DLL    \VB\SETUPKIT\KITFILES
  49.     VER.DLL         \VB\SETUPKIT\KITFILES
  50.     VBRUN100.DLL    \VB or the Microsoft Windows directory
  51.  
  52.  
  53. 2. Rename the Setup Kit DLLs (that are now on the floppy drive).
  54.  
  55.     Current Name    New Name
  56.     -------------   ------------
  57.     SETUPKIT.DLL    SETUPKIT.DL_
  58.     VBRUN100.DLL    VBRUN100.DL_
  59.     VER.DLL         VER.DL_
  60.  
  61.     For example:
  62.     RENAME   A:SETUPKIT.DLL  SETUPKIT.DL_
  63.  
  64.     You must rename the above DLLs with a DL_ extension so 
  65.     Microsoft Windows does not try to use these DLLs while 
  66.     the setup disk is in the floppy drive.
  67.  
  68.  
  69. 3. Copy the Test Application's files to the floppy.
  70.  
  71.     File            Location
  72.     ------          ------------------------
  73.     TESTAPP.EXE     \VB\SETUPKIT\TESTAPP
  74.     THREED.VBX      Microsoft Windows \SYSTEM subdirectory
  75.     CMDIALOG.VBX    Microsoft Windows \SYSTEM subdirectory
  76.     COMMDLG.DLL     Microsoft Windows \SYSTEM subdirectory
  77.  
  78.     Do not rename COMMDLG.DLL. It is not part of the Setup Kit. 
  79.     It is one of the files required by TESTAPP.EXE. 
  80.  
  81.  
  82. The floppy is now complete. To install TESTAPP.EXE, take the floppy 
  83. to another machine. Insert the disk in drive A. From the Windows 
  84. Program Manager (or File Manager) chose Run from the File menu and 
  85. type "a:setup".  When you create diskettes for your applications, the 
  86. steps will be the same, but you will:
  87.  
  88. 1.      Substitute your application files for the TESTAPP.EXE Files.
  89. 2.      Create your own SETUP1.EXE 
  90.     (by modifying the source to this SETUP1.EXE)
  91. 3.      Optionally change SETUP.LST. 
  92.  
  93.