home *** CD-ROM | disk | FTP | other *** search
- 1 REM ******************************BINARY.BAS*****************************
- 5 KEY ON
- 10 COLOR 15,1,4
- 20 CLS
- 50 PRINT " John De Palma on CompuServe 76076,571"
- 60 PRINT " Mon 12-13-1993 23:40:15"
- 65 PRINT "PROCEDURE:"
- 66 PRINT
- 70 PRINT "1. FIRST: I make the file PASSWORD.BAS with GWBASIC.EXE"
- 80 PRINT
- 100 OPEN "PASSWORD.BAS" FOR OUTPUT AS #1
- 110 PRINT #1, CHR$(255);
- 120 CLOSE #1
- 121 BEEP
- 125 PRINT " ";:COLOR 11,0:PRINT "Just created the file PASSWORD.BAS in this directory!":COLOR 15,1
- 130 PRINT
- 140 PRINT "2. SECOND: PRESS F3, type TEST.BAS {Enter} to LOAD the protected program,"
- 150 PRINT
- 160 PRINT "3. THIRD: PRESS F3, type PASSWORD.BAS {Enter} to LOAD that program."
- 170 PRINT
- 180 PRINT "4. FOURTH: TEST.BAS is now in memory and can be LISTed"
- 190 PRINT " PRESS: F1 {Enter} to view TEST.BAS "
- 200 PRINT
- 210 PRINT "5. Now save TEST.BAS by typing: SAVE"+CHR$(34)+"Filename.BAS"+CHR$(34)+",A"
- 220 PRINT " to remove the binary encoding and have it in ASCII format"
- 230 PRINT
- 240 PRINT "6. To Exit use the command SYSTEM.";
-