home *** CD-ROM | disk | FTP | other *** search
- *****************************************************************
- * * 09/92 WC.PRG *
- *****************************************************************
- * * Author's Name: Jeb Long *
- * * *
- * * Description: *
- * * Illustrates how to add Word Count popup menu bar to *
- * * Systems menu after Filer pad. Counts words in clipboard *
- *****************************************************************
- DEFINE BAR 99 OF _MSYSTEM AFTER _MST_FILER PROMPT "Word Count"
- ON SELECTION BAR 99 OF _MSYSTEM WAIT WINDOW;
- LTRIM(STR(OCCURS(" ", _CLIPTEXT)))+" Words in Clipboard"
-