Hi everybody,
I got my Clipper app about 98% migrated to XHarbour (org).
A few things are still not working:
In my program, I use hotkeys wich I want to be accesible from the GET fields. I did this by writing my own inkey() function and replacing GETSYS.PRG with my own MYGETSYS.PRG in wich the calls to inkey() where replaced with calls to my inkey() function.
In XHarbour now, when I replaced the getsys with my own MyGetSys.PRG but this doesn't seem to work. The module gets compiled and linked-in, but the standard ReadModal() is not replaced. In fact, I think XHarbour uses anothet GET system all the way.
So, my hotkeys work everywhere I replace inkey() with MyInkey(), but not from GET input fields.
How can I make my hotkeys() accesible from GET input fields?
Thanks for any respons.