Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 4027092
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T11:03:13+00:00 2026-05-20T11:03:13+00:00

I’m using Delphi 2006 and psvActiveScript . Example: unit Unit1; interface uses Windows, Messages,

  • 0

I’m using Delphi 2006 and psvActiveScript.

Example:

unit Unit1;

interface

uses
  Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls, 
  ObjComAuto, ComObj, psvActiveScript;

type
  TForm1 = class(TForm)
    btnExecute: TButton;
    procedure btnExecuteClick(Sender: TObject);
    procedure ASWError(Sender: TObject; Line, Pos: Integer; ASrc, ADescription: String);
  end;

var
  Form1: TForm1;
  ASW: TpsvActiveScriptWindow;

implementation

{$R *.DFM}

type
  {$METHODINFO ON}
  TMySriptableClass = class(TObjectDispatch)
  public
    constructor Create;
    procedure Alert(msg: string);
    // THIS OR SOMETHING SIMILAR NOT POSSIBLE? **********************
    function FnWithVarNumOfArgs(const args: array of string): string;
    // **************************************************************
  end;
  {$METHODINFO OFF}

constructor TMySriptableClass.Create;
begin inherited Create(Self, False); end;

procedure TMySriptableClass.Alert(msg: string);
begin ShowMessage(msg); end;

function TMySriptableClass.FnWithVarNumOfArgs(const args: array of string): string;
begin Result := 'OK'; end;


procedure TForm1.btnExecuteClick(Sender: TObject);
var
  MyObj: TMySriptableClass;
begin
  ASW := TpsvActiveScriptWindow.Create(self);
  ASW.ScriptLanguage := 'JScript';
  ASW.OnError := ASWError;

  MyObj := TMySriptableClass.Create;
  ASW.AddNamedItem('MyObj', MyObj);

  try
    ASW.Execute(
      'MyObj.Alert("Warning: Here comes Error");'+
      'MyObj.FnWithVarNumOfArgs("1","2","3")'
    );
  finally
    ASW.Free;
  end;
end;

procedure TForm1.ASWError(Sender: TObject; Line, Pos: Integer; ASrc, ADescription: String);
begin Showmessage(ADescription + ': ' + ASrc); end;

end.
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-20T11:03:13+00:00Added an answer on May 20, 2026 at 11:03 am
    [...]
    uses
      activex, objcomauto, comobj;
    
    type
      {$METHODINFO ON}
      TMySriptableClass = class(TObjectDispatch)
      public
        [...]
        function FnWithVarNumOfArgs(const args: OleVariant): string;
        [...]
    
    
    function TMySriptableClass.FnWithVarNumOfArgs(const args: OleVariant): string;
    var
      dispParams: activex.DISPPARAMS;
      vtRet, Element: OleVariant;
      Enum: IEnumVARIANT;
      Fetched: LongWord;
    begin
      if TVarData(args).VType = varDispatch then begin
        OleCheck(IDispatch(args).Invoke(DISPID_NEWENUM, GUID_NULL,
                                        LOCALE_USER_DEFAULT, DISPATCH_PROPERTYGET,
                                        dispParams, @vtRet, nil, nil));
        Enum := IUnknown(vtRet) as IEnumVARIANT;
        while (Enum.Next(1, Element, Fetched) = S_OK) do
          ShowMessage(Element);
      end;
    
      Result := 'OK';
    end;
    
    
        [...]
        ASW.Execute('var myArray=["myarg1", 5, true];' +
                    'MyObj.FnWithVarNumOfArgs(myArray);');
        [...]
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

No related questions found

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.