home *** CD-ROM | disk | FTP | other *** search
- * DEMO.PRG ... a program to demonstrate dBASE utilities
- * CURSOR2, DELAY, FADE, MENUBAR, SAVESCR and SPORT
- * By.. Anton Byers and friend
- set talk off
- set escape off
- load CURSOR2
- load DELAY
- load FADE
- load MENUBAR
- load SAVESCR
- load SPORT
- call CURSOR2 with 'Off'
- use DEMOFONE index DEMOFONE
- if ISCOLOR()
- set COLOR to W+/B, /W
- BARCOLOR = chr(79)
- STDVIDEO = chr(31)
- else
- set COLOR TO W+/ , /W
- BARCOLOR = chr(120)
- STDVIDEO = chr(15)
- endif
- clear
- @ 1, 1 TO 24,78 DOUBLE
- @ 8,15 TO 20,63 DOUBLE
- @ 9,17 say 'This program is designed to demonstrate'
- @ row()+1,17 say 'a number of the dBASE assembly utilities.'
- @ row()+1,17 say 'Utilities used by this program are'
- @ row()+1,17 say 'CURSOR2,DELAY, FADE, MENUBAR, SAVESCR, SPORT'
- @ row()+1,17 say 'The program is a menu driven autodialer for '
- @ row()+1,17 say 'the Hayes SMARTMODEM 1200. Follow the '
- @ row()+1,17 say 'instructions on your screen'
- @ row()+2,17 say '....please wait or press any key to continue'
-
- call SAVESCR with 'S1'
- call DELAY with chr(5)
- call FADE
-
- @ 1,20 clear to 24,57
- @ 1,20 TO 24,57 DOUBLE
- @ 2,28 say 'DEMO AUTO DIALER'
- @ 20,22 say replicate(chr(196),32)
- @ 21,22 say 'Use the arrow keys to highlight'
- @ 22,22 say 'a selection. Press RETURN to '
- @ 23,22 say 'dial a number - Esc to Abort'
-
- PREVRECS = .F.
- do while .T.
- PREVRECS = .F.
- skip - 1
- if .not. bof()
- skip
- PREVRECS = .T.
- endif
- STARTSCRN = recno()
- @ 6,21 clear to 19,56
- @ 5,22 say replicate(chr(196),32)
- do while row() < 17 .and. .not. eof()
- @ row()+1,22 say NAME + ' '+AREACODE+' '+PHONENUM
- skip
- enddo
- MORERECS = iif(eof(),.F.,.T.)
- if PREVRECS
- @ row()+1,22 say 'Previous Page ...'
- endif
- if MORERECS
- @ row()+1,22 say ' Next Page ...'
- endif
- ONSCREEN = row() - 5
- go STARTSCRN
- MENUBAR = chr(ONSCREEN) + space(1) + chr(7) + chr(22) +;
- chr(ONSCREEN) + chr(1) + chr(ONSCREEN)+ chr(1) +;
- chr(36) + stdvideo + barcolor
- call MENUBAR with MENUBAR
- KEY = substr(MENUBAR,2,1)
- CHOICE = substr(MENUBAR,1,1)
- CHOICE = iif(KEY = chr(27), 0, asc(CHOICE))
- do case
- case CHOICE = 0
- exit
- case MORERECS .and. CHOICE = ONSCREEN
- skip 12
- case PREVRECS .and. MORERECS .and. CHOICE = ONSCREEN - 1
- skip - 12
- case PREVRECS .and. CHOICE = ONSCREEN
- skip - 12
- otherwise
- skip CHOICE - 1
- if AREACODE = '818' .or. AREACODE = ' ' && local areacode
- DIALCODE = PHONENUM
- else
- DIALCODE = '1 '+ AREACODE + ' '+ PHONENUM
- endif
- MODEM_MSG = 'WATDT' + DIALCODE + chr(13) + chr(10) && for smartmodem
- call SAVESCR with 'S2'
- call FADE
- @ 10,10 clear to 16,65
- @ 10,10 to 16,65
- @ 11,12 say 'NAME: '+NAME
- @ 12,12 say 'Phone #: ('+AREACODE +') '+ PHONENUM
- @ 13,12 say 'Address: '+ADDRESS
- @ 14,12 say ' '+trim(CITY)+', '+STATE+' '+ZIP
- @ 15,12 say 'ATTENTION: '+ATTENTION
- call SPORT with 'P1'
- call SPORT with 'V 1200, N, 8, 1'
- call SPORT with MODEM_MSG
- @ 22,00 clear to 24,79
- @ 22,00 to 24,79 double
- call DELAY with chr(5)
- @ 23,16 say 'Press ESC when your party answers or to HANG UP'
- MSGBAR = chr(1) + space(1) + chr(24) + chr(2) + chr(1) + chr(1) +;
- chr(1) + chr(1) + chr(78) + stdvideo + barcolor
- HANGUP = 'WATH' + chr(13) + chr(10)
- call MENUBAR with MSGBAR
- call SPORT with HANGUP
- call SAVESCR with 'R2'
- go startscrn
- endcase
- enddo
- call SAVESCR with 'R1'
- call CURSOR2 with 'Normal'