home *** CD-ROM | disk | FTP | other *** search
/ Black Box 4 / BlackBox.cdr / w3_prog / vbtools.arj / READ.ME < prev    next >
Text File  |  1991-06-08  |  4KB  |  95 lines

  1.                  MicroHelp VBTools Demonstration Program
  2.                
  3. MicroHelp's VBTools provides the programmer with a "grab bag" of services:
  4.  
  5.    Lots of Custom Controls. 
  6.       
  7.    Pre-written toolbox routines. All of them are included in the 
  8.    demo program.
  9.    
  10.    Assembly language routines to make your programs faster and smaller.
  11.    You don't need to know anything about assembly language to use them
  12.    because they are invoked just like SubPrograms and Functions. Several
  13.    of these routines are demonstrated.
  14.    
  15.    Key words that Microsoft forgot: MK?, CV? (including the MBF versions),
  16.    PLAY, BLOAD and BSAVE (for arrays other than variable-length string
  17.    arrays). Only the PLAY key word is demonstrated in this demo.
  18.    
  19.    Graphics special effects, which are in the demo.
  20.    
  21.    How to use some of the more useful Windows API routines. Many of these
  22.    are sprinkled throughout the demo.
  23.    
  24.    A blackjack game.
  25.    
  26.    A utility program giving you the functionality of $INCLUDE.
  27.  
  28. -------------------------------------------------------------------------
  29. The demonstration consists of these files:
  30.  
  31.    READ   .ME   This file
  32.    VBTOOLS.EXE  Demonstration program
  33.    VBTOOLS.VBX  Dynamic Link Library (DLL) with supporting routines
  34.    CARDS  .DLL  Dynamic Link Library containing playing card bitmaps
  35.    SOUND  .DRV  New and improved sound driver
  36.  
  37. In order to run this demonstration, you'll need the Visual Basic
  38. runtime DLL. The name of the file is VBRUN100.DLL. If you don't have
  39. this file, you can download it from the MSSYS forum on CompuServe (the
  40. file name is VBRUN.ZIP).
  41.  
  42. The SOUND.DRV file that comes with Microsoft Windows 3.0 has a bug that
  43. effects "tempo" in PLAY statements. Microsoft has fixed the bug and the
  44. included SOUND.DRV file has the fix. In order to hear the music in the
  45. demo program as it was meant to be heard, you'll need to:
  46.  
  47.   1. COPY SOUND.DRV to your Windows System directory (not the Windows
  48.      directory).
  49.   2. Make sure that your SYSTEM.INI has the following line:
  50.   
  51.        sound.drv=sound.drv
  52.        
  53.   3. Restart Windows
  54.  
  55. IMPORTANT: Be sure that you don't have more than one file named SOUND.DRV
  56. in your path. If you do, Windows may read the wrong one and the music in
  57. our demo program may play "slowly".
  58.  
  59. -------------------------------------------------------------------------
  60. The actual product contains numerous demonstration applications,
  61. each of which shows you how to use one or more features from the
  62. product. This demonstration consists mainly of several of the
  63. example applications.
  64.  
  65. Please note that VBTOOLS.VBX and CARDS.DLL must be in your PATH
  66. when you execute VBTOOLS.EXE. Therefore, after you install the
  67. demonstration program, you will need to do one of two things:
  68.  
  69. 1. COPY VBTOOLS.VBX and CARDS.DLL to a directory that is in your PATH, or
  70. 2. Adjust your PATH so that it includes the directory where you install
  71.    VBTOOLS.VBX and CARDS.DLL.
  72.    
  73. If you have any problems installing or running the demonstration program,
  74. please call MicroHelp at (404) 594-1185.
  75.  
  76. -------------------------------------------------------------------------
  77. Double Clicking
  78.  
  79. We have had a report from someone who stated that after running VB and
  80. one of the VBTools example programs (he didn't know which one), that he
  81. could no longer double-click in *ANY* Windows application. He traced the
  82. problem to the following line in the SYSTEM.INI file:
  83.  
  84.     device=d:\windows\system\vtd.386
  85.     
  86. Replacing that line with the default line cured the problem:
  87.     
  88.     device=*.vtd
  89.     
  90. Unfortunately, the user did have a file VTD.386 dated 4/17/91, but he
  91. had no idea where it came from!    
  92.  
  93.  
  94. <End of file>
  95.