home *** CD-ROM | disk | FTP | other *** search
- ' WARNING.BAS
- '
- ' Released to the public domain 7-11-92 by:
- '
- ' Gabriel Gonzalez
- ' 9050 Larkspur Dr.
- ' Westminster, CA 92683
- '
- ' Please modify this code if you see fit.
- ' Compiled under QuickBASIC 4.5
- '
-
-
- OPEN "c:\pwplus.log" FOR INPUT AS #1
- WHILE NOT EOF(1)
- msg2$ = msg1$
- INPUT #1, msg1$
- WEND
- IF LEFT$(msg1$, 2) = "Un" OR LEFT$(msg2$, 2) = "Un" THEN
- CLS
- FOR i = 1 TO 10
- PRINT (CHR$(7));
- NEXT
- PRINT "W A R N I N G!!!!"
- PRINT : PRINT
- PRINT "Unauthorized attempts have occurred."
- PRINT : PRINT
- PRINT "Press <RETURN> to continue...";
- INPUT msg1$
- END IF
-