Hi.
How can I create a popup item only for a function or procedure in package.
procedure IDE_CreatePopupItem(ID, Index: Integer; Name, ObjectType: PChar);
There is a ObjectType parameter value for this?
For this tree example, I need popup item only for FUNC1, FUNC2, PROC1, PROC2.
Thanks.
How can I create a popup item only for a function or procedure in package.
procedure IDE_CreatePopupItem(ID, Index: Integer; Name, ObjectType: PChar);
There is a ObjectType parameter value for this?
For this tree example, I need popup item only for FUNC1, FUNC2, PROC1, PROC2.
Thanks.
Code:
Packages
|_ PACKAGE1
| |_ Functions
| |_ FUNC1
| |_ FUNC2
| |_ Procedures
| |_ PROC1
| |_ PROC2
|
|_ PACKAGE2
|