WSF file and function calls...
- From: "Blue Streak" <rdlebreton@xxxxxxxxxxx>
- Date: 16 Jan 2007 13:31:13 -0800
Hi, folks!
I have a WSF script file that I'm working on that goes something like
this:
I am trying to make a function call in a VBScript block where the
function has been defined in a JScript block. Naturally, I am getting
an error, "Variable is undefined: 'ShowUses' ". How can I make this
function call work, if possible?
====================
<?xml version="1.0" encoding="utf-8" ?>
<package>
<job id="Job1">
<script src="LibraryFile.vbs" language="VBScript" />
<script language="VBScript">
ShowUses() 'Call made here
</script>
<script language="JScript">
function ShowUses() //function defined here
{
...
}
</script>
</job>
</package>
====================
TIA...
.
- Follow-Ups:
- Re: WSF file and function calls...
- From: Michael Harris \(MVP\)
- Re: WSF file and function calls...
- Prev by Date: Re: transfering datas from a program to another
- Next by Date: Re: transfering datas from a program to another
- Previous by thread: transfering datas from a program to another
- Next by thread: Re: WSF file and function calls...
- Index(es):
Relevant Pages
|