drewglew
drewglew

Reputation: 148

Using .net interop assembly from PowerBuilder IDE

I have created a .net assembly and am able to call and use the assembly at will from outside the PowerBuilder 12.1 IDE within my applications distribution (regasm). However while I develop inside the IDE the assembly is not visible. How can I access the assembly from within the IDE so I can work with the assembly and my code together?

Upvotes: 0

Views: 415

Answers (1)

Matt Balent
Matt Balent

Reputation: 2407

You need to make sure your .Net component is COM visible. Even then, the methods on the assembly will only be 'visible' in the PB IDE if they are given a DispID and such in .Net.

Upvotes: 1

Related Questions