Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
VBScript / Javascript difference
Message
From
17/09/2008 10:21:15
 
 
To
All
General information
Forum:
ASP.NET
Category:
Client-side development
Title:
VBScript / Javascript difference
Environment versions
Environment:
ASP.NET
OS:
Windows Server 2003
Network:
Windows 2008 Server
Database:
MS SQL Server
Miscellaneous
Thread ID:
01348223
Message ID:
01348223
Views:
71
Hi,

Two alternative pieces of code ; the first using VBScript and the second using Javascript:
<script language="VBSCRIPT" type="text/vbscript">
	Dim oVFPForm
	Function SetFormRef(lotheForm)
	  Set oVFPForm = lotheForm
	End Function
</script>
<script language="javascript" type="text/javascript">
    var jVFPForm;
    function SetFormRef(lotheForm) {
        jVFPForm = lotheForm;
    }
</script>
Calling the VBScript version from VFP with ".DOCUMENT.Script.SetFormRef(THISFORM)" works fine but the same line used against the Javascript function raises an OLE error. I don't think the code within the function is the problem - even an empty version of the function behaves the same. Anyone know what the problem might be?
TIA,
Viv
Next
Reply
Map
View

Click here to load this message in the networking platform