home *** CD-ROM | disk | FTP | other *** search
- @cls
- @echo==========================================================================
- @echo.
- @echo You must have a VESA compatible display and the correct VESA bios
- @echo extension installed for the DOS Browser to display images correctly.
- @echo.
- @echo The DOS Browser defaults to VESA mode 1. If the Browser doesn't
- @echo display correctly, set the VESA mode from the command line by typing
- @echo "BROWSER 0" for VESA mode 0, "BROWSER 2" for VESA mode 2, etc.
- @echo.
- @echo USAGE: BROWSER [MODE]
- @echo.
- @echo==========================================================================
- @echo.
- @echo TO USE THE DOS BROWSER
- @echo.
- @echo To view a library, go to the Main Menu and type the letter assigned
- @echo that library.
- @echo To Quit, type ESC or Q at the Main Menu screen.
- @echo Type any other key or click the right mouse button to advance
- @echo to the next screen.
- @echo.
- @echo==========================================================================
- @pause
- @echo off
- if "%1"=="" goto mode1
- goto mode2
-
- :mode1
- cd browser
- ANIPLAY -AUTO browse.SCR -d vesa 1
- goto quit
-
- :mode2
- cd browser
- ANIPLAY -AUTO browse.SCR -d vesa %1
- goto quit
-
- :quit
- @echo off
- cd\
- cls
-
-