Welcome gkosw.exe is a windows application that allows you to use PC keyboard keys sdf/jkl as a GKOS Chorded Keyboard to enter text to any application. Press Esc to return to qwerty mode. I developed this code using Dev-Cpp tools on Windows 98 and later on Win XP. I hope you find it useful. You might want to credit me somewhere in your code... Regards Seppo Tiainen Veikkola, FINLAND gkos@gkos.com 1) Download from web and install Dev-Cpp latest version 4.9.9.2 2) Unzip the gkosw source code file found on this site. 3) Add the gkosw source folder to Dev-Cpp's main folder 3) Start Dev-Cpp and open the gkosw.dev project file Start further development (edit, comile, make exe file, test if it still works etc. __________________________________________________________ This might help in case you have the same problem as below: ___________________________________________________________ Oct 6 2007, 08:31 Quote - (ArtOf_War @ Jan 19 2007, 14:31) * So... I've been trying to get Bloodshed's Dev-C++ IDE to work on my machine. It installs and runs flawlessly, however it refuses to compile and outputs the error: CODE gcc: installation problem, cannot exec 'cc1': Invalid argument Then I googled around and found that I was missing an enviroment variable refering gcc.exe to the location of cc1.exe, so i added CODE ;C:\Dev-Cpp\libexec\gcc\mingw32\3.4.2 to my "Path" variable, which now looks like this: CODE %SystemRoot%\system32;%SystemRoot%;%SystemRoot%\System32\Wbem;C:\Program Files\QuickTime\QTSystem\;C:\Program Files\Common Files\Adobe\AGL; C:\Dev-Cpp\libexec\gcc\mingw32\3.4.2 So Everything should work now... right? WRONG, now when I compile I get a bloody mess in the compile log (Also note that this worked with MinGW 3.4.5 which I downloaded and installed separately... however it's a bitch having to go to the command line to compile all the time. That and I only have C that way, no C++), anyway here's the current compile log output: It goes on but I guess this gives you the idea... So I'm guessing I need to get some other enviroment variable to my path file... any ideas would certainly be appreciated and thanks for having taken the time to read this. I'm using Dev-C++ 4.9.9.2. I fixed this error by adding the path of cc1.exe to the compiler's binary paths. Menu bar: "Tools|Compiler Options" Compiler Options dialog: "Directories" tab Directories Tab: "Binaries" sub tab Add path to cc1.exe dir: "C:\Dev-Cpp\libexec\gcc\mingw32\3.4.2" (you'll have to locate it on your system) Shift+F11 Problem solved! Good luck, Quantium