Creating scriptable application

  • Thread starter Thread starter John Wildes
  • Start date Start date
J

John Wildes

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
 
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

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 ScriptHostObjectModel.

Tibby
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top