WSC Help, Please....
I have a Windows Scripting component that came with a Microsoft Tutorial and
need to know a few things about it...
It looks like an XML file, similar to that following. I'm looking to write a
few components in this manner, but haven't a clue where to start (I have the
programming ability, it's knowing what creates these (.wsc) files and how to
obtain the GUID, etc.,) ... any ideas?
<?xml version="1.0"?>
<component>
<?component error="true" debug="true"?>
<registration
descrption="COMName"
progid="Component.Class"
version="1.00"
classid="{a guid}"/>
<public>
<method name="Send">
<parameter name="Do***ent"/>
</method>
</public>
<implements type="Behaviour" id="Behaviour"/>
<script language="VBScript">
<![CDATA[
function Send(Do***ent)
' some code here that does stuff....
end function
]]>
</script>
</component>
Thanks in advance for any info on this.
|