I am looking for VBScript version of the following JScript HTML add-in; the reason why i want the VBScript version is because i need to do database access and i am not familiar with JScript.
<HTML>
<HEAD>
<OBJECT classid="clsid:44C4C3AC-D0F1-11D2-919D-006008C88FC3" height=0 id=qsBridge style="LEFT: 0px TOP: 0px" width=0>
<PARAM NAME="_ExtentX" VALUE="26">
<PARAM NAME="_ExtentY" VALUE="26">
</OBJECT>
</HEAD>
<SCRIPT language="jscript">
<!--
function recallTransonHold()
{
qsBridge.FireEvent("selectHoldTransaction");
}
//-->
</SCRIPT>
<BODY onload="recallTransonHold()">
</BODY>
</HTML>
0