home *** CD-ROM | disk | FTP | other *** search
/ Stars of Shareware: Programmierung / SOURCE.mdf / programm / windows / c / bsscdemo / install.bat < prev    next >
Encoding:
DOS Batch File  |  1993-06-01  |  570 b   |  22 lines

  1. @echo off
  2. cls
  3. if %1x == x goto help
  4. echo This will expand Barking Spider Software, Inc. Tree/List Control V1.0
  5. echo demo, BSSCDEMO.EXE to %1\BSS
  6. echo Press Ctrl Break to abort or any other key to continue
  7. pause >nul
  8. mkdir %1\BSS
  9. copy BSSCDEMO.EXE %1\BSS
  10. %1
  11. cd \BSS
  12. BSSCDEMO -d
  13. goto END
  14. :help
  15. echo Barking Spider Software Tree/List Control V1.0 Installation
  16. echo -----------------------------
  17. echo Usage: INSTALL [destination:]
  18. echo -----------------------------
  19. echo Example:  INSTALL C: -- Will install BSS Tree/List Controls at C:\BSS
  20. echo  
  21. :END
  22.