home *** CD-ROM | disk | FTP | other *** search
- EXTPROC CEnvi
- //*************************************************************************
- //*** BigFont.cmd - Example for how to control other programs using the ***
- //*** ver.1 the keyboard stuffing routines in KeyPush.Lib. ***
- //*************************************************************************
-
- #include <KeyPush.lib>
- #include <ClipBrd.lib>
-
- system("mode 80,10");
-
- KeyStroke(VK_ALT);
- KeyStroke('f');
- KeyStroke(VK_END);
- KeyStroke(VK_ENTER);
-
- Command = "cls\rBigFont WOW!!!";
- PutClipboardData(Command,1+strlen(Command),CF_TEXT);
- KeyStroke(VK_ALT);
- KeyStroke('p');
-