Internal Procedures / Functions

Hi all,

i'm building a program where the user has to select a super-procedure file. All the procedures and functions are showed in a browse. Now I want to see the actual code of the selected procedure/function. Anyone knows a method or something to do this?

To get all procedures and functions, I use GET-SIGNATURE.
 

RealHeavyDude

Well-Known Member
You can also use the INTERNAL-ENTRIES attribute on the procedure handle.

Excerpt from the online help:
A comma-separated list containing the names of all internal procedures and user-defined functions defined in the procedure associated with the specified handle. Returns the Unknown value (?) for a Web service procedure or proxy persistent procedure.
Heavy Regards, RealHeavyDude.
 
Top