home *** CD-ROM | disk | FTP | other *** search
- set break on
- open "c:\pcwrite\astrolog\encyclop\astrolo1.doc" for input as #1
- while not eof(1)
- line input #1, nextline$
- print nextline$
- if inkey$=chr$(32) then gosub wait
- wend
- close #1
- end
- wait:
- a$=inkey$
- if a$="" then goto wait
- return
-
-