home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
HomeWare 14
/
HOMEWARE14.bin
/
os2
/
cenv2_19.arj
/
BIGFONT.CMD
< prev
next >
Wrap
OS/2 REXX Batch file
|
1994-03-08
|
610b
|
22 lines
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');