home *** CD-ROM | disk | FTP | other *** search
-
- /*
-
- Procedure NOPAUSE: Opens a centered window, displays a message,
- keeps going.
-
- NOPAUSE "Connecting at 1200 baud...", window
-
- Copyright (c) 1986, 1989, Digital Communications Associates, Inc.
- All rights reserved
- For Crosstalk Mk. 4, Ver 2.0 - 10-19-89 by Sheldon T. Hall
-
- */
-
- include XTCTRWIN -- Uses CENTER_WINDOW
-
- proc NOPAUSE takes string MESSAGE, integer WINCHAN
-
- width = length(MESSAGE) - (count(MESSAGE,chr(1)) * 2) + 2
-
- Winshade = wincolor(0,-1,27) -- Same as Alt-E popup window
-
- CENTER_WINDOW '', WINCHAN, 3, WIDTH, WINSHADE
-
- print #WINCHAN, at 1,1, MESSAGE;
-
- endProc
-