Creating scriptable application

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • John Wildes

    #1

    Creating scriptable application

    Hello

    I don't know if anyone else has seen this, but recently there was an
    article on msdn.microsoft. com about making your application scriptable
    through the Windows Scripting Host. Does anyone have the link to that
    article, or does anyone have any pointers on how to do this. I have
    some functions in my application that if I could script through WSH it
    would really help in automating some of the more manual process that we
    have.

    I can get into specifics if anyone wants to... but I was mainly looking
    for the MSDN article and some general pointers.

    Thanks
    john
  • Tibby

    #2
    Re: Creating scriptable application

    On Mon, 16 May 2005 14:41:50 -0500, John Wildes <jwildes@gmail. com>
    wrote:
    [color=blue]
    >Hello
    >
    >I don't know if anyone else has seen this, but recently there was an
    >article on msdn.microsoft. com about making your application scriptable
    >through the Windows Scripting Host. Does anyone have the link to that
    >article, or does anyone have any pointers on how to do this. I have
    >some functions in my application that if I could script through WSH it
    >would really help in automating some of the more manual process that we
    >have.
    >
    >I can get into specifics if anyone wants to... but I was mainly looking
    >for the MSDN article and some general pointers.
    >
    >Thanks
    >john[/color]

    I remember doing something like that in VB6. I stored the scripts
    into a text file, then had to read them into a string variable to pass
    into the ScriptHost object. It than executed the script as expected.
    I always referred to it as a poor man's plugin because of the
    limitations of VBScript.

    Try googling for ScriptHostObjec tModel.

    Tibby

    Comment

    Working...