home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PsL Monthly 1994 February
/
psl_9403.zip
/
psl_9403
/
DOS
/
UT_SYSTM
/
CENVI2.ZIP
/
BIGFONT.CMD
< prev
next >
Wrap
OS/2 REXX Batch file
|
1993-10-20
|
437b
|
20 lines
EXTPROC CEnvi
// BigFont.cmd - Example for how to control other programs using the
// 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');