tags:

views:

9

answers:

1

I have two Library Packages, both are defined as process nodes in my main project. How do I use them? I mean how can I load my process node packages and create the windows on the Grid?

A: 

Just use CreateFromProcessNode constrcutor like this:

var p: TPackage;
begin
  p := TPackage.CreateFromProcessNode('YourLibName');

TPackage handles automatically the Grid traffic, and you can use your forms directly as if they were included in your project. For example:

  p.CreateForm('FormName').Show;

BTW: A) TPackage is documented in the Quick Help and B) You would get a faster answer if you post your question in the Power++ Question forum at gridplusplus.com.

plusplus
great thx it works now.
Canan Erdol