home *** CD-ROM | disk | FTP | other *** search
AMOS Source Code | 1991-08-25 | 900 b | 44 lines |
- ' Slide Show Manager Driver Creator
- ' 5th September 1991
- '
- Screen Open 1,640,200,8,Hires
- Dim DRV$(3),NS(3)
- For X=0 To 3
- Read DRV$(X)
- Next
- Data "dh0:","df0:","df1:","df2:"
- Print "SLIDE SHOW MANAGER DRIVER CREATOR"
- Print "*********************************" : Print : Print
- Print "Enter Number of devices" :
- Print "Enter <0> for Hard Drive"
- Print "or the number of disk drives"
- Print "including the internal drive"
- Input D
- Print : Print : Print
- If D=0 Then
- For X=1 To D
- Print "Enter Number of last Slide in Drive ";DRV$(X)
- Input NS(X) : Print
- Next
- Goto FINISH
- HARD:
- Print "Enter Number of last Slide in ";DRV$(0)
- Input HN
- FINISH:
- Cls
- Print "Now Creating <DRIVER> File: Please wait"
- Open Out 1,"Driver"
- If D=0 Then Goto HARDFILE
- Print #1,D
- For X=1 To D
- Print #1,NS(X)
- Next
- Goto CONCLUDE
- HARDFILE:
- D=9
- Print #1,D
- Print #1,HN
- CONCLUDE:
- Close 1
- Print : Print "File <DRIVER> saved."
- End