Question Help Function

I got a system where the default F1/Help function is running this particular procedure(.p).

Where can I find this?

Any reply will be so much appreciated, Thanks.
 
If you press F1 in a progress application and it then runs progress code, you're searching wrong.

There has to be an F1 trigger in the source. Try again.

Code:
status default "Use[arrow keys] & [return] to select or <F1> Help".
READKEY.
lv-key = lookup(keyfunction(lastkey),"cursor-up,cursor-down,cursor-right,cursor-left,go,return,F1").
    if lastkey = keycode("F1") then
        run ip-help.
 
Thnks for the replies...

Anyway, Mr tamhas...thats it...I looked for the .p and its applhelp.p also..

But I don't know where is this procedure in the source code...
 
Last edited:
When you have a Progress session open... what does this show?

message SEARCH("applhelp.r") SEARCH("applhelp.p").

More than likely it will return a file under your DLC directory in either the gui or tty directory.
 
Mr. TheMadDBA,

The applhelp.r found in : C:\Program Files\PROGRESS\PROBUILD\EUCAPP\EUC.PL and the message for applhelp.p is just : .\applhelp.p
.
.
.
Thanks guys
 
Back
Top