home *** CD-ROM | disk | FTP | other *** search
- *******************
-
- PROCEDURE Ssroutin
-
- PARAMETERS p, l, v
-
- PRIVATE _oldc, _poprow, _popcol, _temp
-
- IF TYPE("scrcursor") = "U"
- scrcursor = .T.
- ENDIF
- _oldc = SETCOLOR()
- _poprow = ROW()
- _popcol = COL()
- _temp = ""
- _temp = SAVESCREEN(0,0,24,79)
- SET CURSOR OFF
- IF ISCOLOR() .AND. !(IF(TYPE("scrmono")="U", .T., scrmono))
- SET COLOR TO W/B
- ENDIF
- SSRSCREEN(FILE("GRATITUD.TXT"))
- SETCOLOR(_oldc)
- SET CURSOR (scrcursor)
- RESTSCREEN(0,0,24,79, _temp)
- @ _poprow, _popcol SAY ""
-
- ********************
-
- PROCEDURE Ssrscreen
-
- PARAMETERS _withfile
-
- IF _withfile
- _showit = MEMOTRAN(MEMOREAD("GRATITUD.TXT"),"","")
- ELSE
- _showit = TEXT()
- ENDIF
- @ 0,0 SAY ""
- TEXT
- ╔══ Steve Straley's ToolkiT - Version 2.0 ════════════════════════════════════╗
- ║ ║
- ║ ║
- ║ ║
- ║ ║
- ║ ║
- ║ ║
- ║ ║
- ║ ║
- ║ ║
- ║ ║
- ║ ║
- ║ ║
- ║ ║
- ║ ║
- ║ ║
- ║ ║
- ║ ║
- ║ ║
- ║ ║
- ╚═════════════════════════════════════════════════════════════════════════════╝
- ENDTEXT
- @ 22,05 SAY " ESC to Continue "
- MEMOEDIT(_showit, 2,1,19,77,.F.)
-
- *******************
-
- FUNCTION Text
-
- RETURN("The ToolkiT has changed by leaps and bounds from the very first release." + ;
- "In this release, the best yet, version 2.0 gives a multitude of object-" + ;
- "oriented, window, file encryption, pop-up utilities, stand alone features," + ;
- "a brand new manual with added demos and a reader file for Tom Rettig's" + ;
- "help program. In addition to the source code, this version of the " + ;
- "ToolkiT comes with 1 LIB file." + ;
- CHR(13)+CHR(10) + ;
- "Special acknowledgements are extended to:" + ;
- CHR(13)+CHR(10)+CHR(13)+CHR(10)+CHR(13)+CHR(10) + ;
- "Joe King Essor Maso Joe Booth David Karasek " + ;
- "Jack Tollefson Tom Rettig Dirk Lesko Neil Weicher " + ;
- CHR(13)+CHR(10)+CHR(13)+CHR(10) + ;
- "And to the members of the staff at SJS & Assoicates! " + ;
- CHR(13)+CHR(10)+CHR(13)+CHR(10)+CHR(13)+CHR(10)+CHR(13)+CHR(10) + ;
- "Take a trip on the SST and make your Clipper applications SOAR..... ")
-
-
-
-
- * End of File