Icon View Thread

The following is the text of the current message along with any replies.
Messages 1 to 3 of 3 total
Thread Functions
Sun, May 27 2007 1:37 PMPermanent Link

Roy Lambert

NLH Associates

Team Elevate Team Elevate

Its totally beaten me. I have reduced it to about as simple as I can get. And nothing is selected. Please someone tell me how to return a true/false result and get the engine to take notice.

procedure TEDBExternalModule1.EDBExternalModuleRoutine(
const RoutineName: string);
begin
  Params.ParamByName('Result').AsBoolean:=True;
 end;

Roy Lambert
Mon, May 28 2007 7:17 AMPermanent Link

"Iztok Lajovic"
Roy,

> Its totally beaten me. I have reduced it to about as simple as I can get.
> And nothing is selected. Please someone tell me how to return a true/false
> result and get the engine to take notice.
>
> procedure TEDBExternalModule1.EDBExternalModuleRoutine(
> const RoutineName: string);
> begin
> Params.ParamByName('Result').AsBoolean:=True;
> end;

I think that out parameter is missing:

procedure TEDBExternalModule1.EDBExternalModuleRoutine(const RoutineName:
string; out Result: boolean);
:::::

Iztok Lajovic

Tue, May 29 2007 4:28 PMPermanent Link

Tim Young [Elevate Software]

Elevate Software, Inc.

Avatar

Email timyoung@elevatesoft.com

Roy,

<< Its totally beaten me. I have reduced it to about as simple as I can get.
And nothing is selected. Please someone tell me how to return a true/false
result and get the engine to take notice. >>

There's a bug whereby the result parameter is not getting its type set
properly.  A fix will be in 1.03 B2.

--
Tim Young
Elevate Software
www.elevatesoft.com

Image