PQzII also crashes on mine. However AEKMap works fine to set up CTRL+something for launching ( http://ae.inc.ru/aekmap.php). The configuration is a bit complicated, you need to set up a keyboard map file and for instance add
Exec 0002 "\Program Files\WebIS\PocketInformant\PocketInformant.exe"
Key 0233 e0002 ; Execute PocketInformant by pressing Ctrl+3
All the keycodes follow a simple scheme, i.e.
A=0041
CTRL+A=0241
B=0042
CTRL+B=0242
and so on... with a few exceptions for letters J-O which are
004A-004F
before continuing with P=0050
What I haven't found out yet though is how to start links (not .exe) or pass command line options: for instance the link
69#"\Program Files\WebIS\PocketInformant\PocketInformant.exe" tasks -new
should start PocketInformant with the new task dialogue (would love to have that on CTRL+T). Simply putting
Exec 0002 "\Program Files\WebIS\PocketInformant\PocketInformant.exe tasks -new"
does NOT do the job for me.
|