> As such - does anyone have a suggestion. Otherwise - and I hate to do > this - I may pull that "Browsing" procedure into the program I am > working on - and update the procedure (maybe as a different name) - and > directly change that procedure to do what I want. But, was just hoping > for a more elegant solution... >
Depending on how you route through the PRG's to get to the one that snags the INKEY value, maybe you could intercept that BEFORE that call takes place. Have this new program deal with what you want from your ON KEY stuff, if it doesn't apply to what you want to do then have this one pass it along to the original... Example: Your current code prolly goes something like this: ProgramA ->ProgramB ---->Program with special stuff -------->Your new program with ON KEY functionality Insert your ON KEY program ahead of it: ProgramA ->ProgramB ---->Your new program with ON KEY functionality -------->Program with special stuff With any luck that's one change to the caller program in ProgramB -- Matt Jarvis Eugene, Oregon USA _______________________________________________ Post Messages to: [email protected] Subscription Maintenance: http://leafe.com/mailman/listinfo/profox OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech Searchable Archive: http://leafe.com/archives/search/profox This message: http://leafe.com/archives/byMID/profox/capt54ra0_wq9qunvguvi_8ukq6xtly79utrfo0dehcb8aca...@mail.gmail.com ** All postings, unless explicitly stated otherwise, are the opinions of the author, and do not constitute legal or medical advice. This statement is added to the messages for those lawyers who are too stupid to see the obvious.

