问题之一:
  在程序中运行脚本需要使用IActiveScript等一系列的接口,但是我没有找到Delphi中此类接口的声明,只『隐隐约约』看到有C++的相应接口——而本人又看不懂C++,谁能帮我找到 或者转换成Delphi的声明形式?问题之二:
  如果我构造了一个脚本组件——内容如下<?xml version="1.0"?>
<component><registration
description="WSCModel"
progid="WSCModel.WSC"
version="1.00"
classid="{4ea703f4-795c-43c6-ad6c-cf00b66dc902}"
>
</registration><public>
<property name="P1">
<get/>
<put/>
</property>
<method name="M1">
<PARAMETER name="param1"/>
</method>
</public><script language="VBScript">
<![CDATA[dim P1
P1 = 20function get_P1()
get_P1 = P1
end functionfunction put_P1(newValue)
P1 = newValue
end functionfunction M1(param1)
M1 = "Temporary Value"
end function]]>
</script></component>我应该怎么样为它写接口(如果可能的话)?