home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Black Box 4
/
BlackBox.cdr
/
database
/
vpi1_303.arj
/
SRILOGON.PRG
< prev
next >
Wrap
Text File
|
1991-12-30
|
2KB
|
57 lines
***************************************************************************
** SRILOGON.PRG
** (C) Copyright 1990-91, Sub Rosa Publishing Inc.
**
** A demonstration program provided to VP-Info users.
** This program may be copied freely. If it is used in commercial code,
** please credit the source, Sub Rosa Publishing Inc.
**
** SRILOGON demonstrates the use of color command to paint blocks.
** THE sign-on screen for SR-Info, the original shareware edition of
** the Sub Rosa database language, was designed from this test code.
**
** SRILOGON is compatible with all current versions of VP-Info.
**
** Sid Bursten and Bernie Melman
***************************************************************************
IF :color <> 7
SET color to 117; violet on grey (my choice, maybe not yours! BDM)
ENDIF
ERASE
COLOR :color,3,16,9,57,178
DELAY .1
COLOR :color,2,28,10,32,32 ; main block S
DELAY .1
COLOR :color,7,16,8 ,25,32 ; bottom large hole in S
DELAY .1
COLOR :color,3,45,9,50,32 ; main block R
DELAY .1
COLOR :color,6,48,6,49,178 ; the '-'
DELAY .1
COLOR :color,4,51,8,52,32 ; left hollow of 'I'
DELAY .1
COLOR :color,4,35,5,42,32 ; top hollow of 'R'
DELAY .1
COLOR :color,4,56,8,57,32 ; right hollow of 'I'
DELAY .1
COLOR :color,4,18,5,28,32 ; top hollow of 'S'
DELAY .1
COLOR :color,7,35,10,41,32 ; bottom main hollow of R
DELAY .1
COLOR :color,7,44,10,45,32 ; outside of tail of R
DELAY .2
@ 12,10 say 'SR-Info 3.10 (C) Copyright 1984-90, Sub Rosa Inc.'
@ 13,10 say 'Thank you for trying out our Shareware Database Software.'
@ 14,10 say 'As Shareware, you are welcome to try before you buy as well as'
@ 15,10 say 'to distribute copies within the United States and Canada.'
@ 16,10 say 'Before placing copies on bulletin boards, sysops are asked'
@ 17,10 say 'to advise Sub Rosa Publishing Inc. (416) 398-8414.'
@ 24,53 say 'Press F10 to enter SR-Info.'
DUMMY = 50
DO WHILE dummy <> 324 ; Info code for F10
DUMMY = inkey()
ENDDO
CHAIN samples
*
* *** end of program SRILOGON.PRG **