home *** CD-ROM | disk | FTP | other *** search
- /*
- MSGBOX.CH Pre-processor definition for MsgBox()
- Author: Craig Yellick
- Excerpted from "Clipper 5: A Developer's Guide"
- (See Chapter 13, "User Interface")
- Copyright (c) 1991 M&T Books
- 501 Galveston Drive
- Redwood City, CA 94063-4728
- (415) 366-3600
- */
-
- #translate MESSAGE <msg,...> ;
- [ AT <r1> [, <c1>] ] ;
- [ TO <r2> [, <c2>] ] ;
- [ WIDTH <w> ] ;
- [ DEPTH <d> ] ;
- [ COLOR <clr> ] ;
- [ CHOOSE <ch,...> ] ;
- [ CHOOSECOLOR <chClr> ] ;
- [ CHCOLOR <chClr> ] ;
- [ INTO <ret> ] ;
- [ WAIT <wait> ] ;
- [ <rest:RESTORE,REST> ] ;
- => ;
- [<ret> := ] MsgBox( <r1>, <c1>, <r2>, <c2>, <w>, <d>, ;
- {<msg>}, <clr>, {<ch>}, <chClr>, ;
- <wait>, <.rest.> )
-
- /* eof MsgBox.Ch */
-