Commented Issue: By-reference arguments to VBScript functions do not work [58]
Great Library, really helpful!I ran into one situation where we have some existing VBScripts, the have subroutines and functions that take ByRef scalar types such as ints, double and the values are...
View ArticleEdited Issue: AddHostObject works very slowly [68]
Hi!AddHostObject works very slowly for an object of type Microsoft.Office.Interop.Excel.Workbook.```using System;using System.Collections.Generic;using System.Linq;using System.Text;using...
View ArticleCommented Issue: AddHostObject works very slowly [68]
Hi!AddHostObject works very slowly for an object of type Microsoft.Office.Interop.Excel.Workbook.```using System;using System.Collections.Generic;using System.Linq;using System.Text;using...
View ArticleEdited Issue: MetaScriptItem doesnt override GetDynamicMemberNames [64]
the base implantation of DynamicMetaObject just returns an empty string array.advise using doing something like what dynamic object does``` public override IEnumerable<string>...
View ArticleCommented Issue: MetaScriptItem doesnt override GetDynamicMemberNames [64]
the base implantation of DynamicMetaObject just returns an empty string array.advise using doing something like what dynamic object does``` public override IEnumerable<string>...
View ArticleEdited Issue: Using ADODB recordsets [69]
HI!How to properly add ADODB.Recordset? Is it possible?```static void Main(string[] args){ ADODB.Recordset _recordset = new ADODB.Recordset(); _recordset.Fields.Append("Id",...
View ArticleCommented Issue: Using ADODB recordsets [69]
HI!How to properly add ADODB.Recordset? Is it possible?```static void Main(string[] args){ ADODB.Recordset _recordset = new ADODB.Recordset(); _recordset.Fields.Append("Id",...
View ArticleEdited Issue: Crash in ClearScriptBenchmarks Test #2 [70]
Hello,I am evaluating which script technology to embedded in a asp.net app and I am testing ClearScript. I build with success but when I am trying to run ClearScriptBenchmarks test 2 (2. SunSpider - V8...
View ArticleCommented Issue: Crash in ClearScriptBenchmarks Test #2 [70]
Hello,I am evaluating which script technology to embedded in a asp.net app and I am testing ClearScript. I build with success but when I am trying to run ClearScriptBenchmarks test 2 (2. SunSpider - V8...
View ArticleNew Post: Returning Javascript arrays from HostObjects
Hi, I am new to the project and I wanted to change over to ClearScript for my SignalR example BoardGame from a different V8 engine host. In my existing sample, there was an "immediate window" that...
View ArticleNew Post: Returning Javascript arrays from HostObjects
Hi Chris, First, consider upgrading to the latest version of ClearScript (currently 5.4.1). We recommend that you build it from the source code as outlined in the ReadMe. Second, you've determined...
View ArticleNew Post: Returning Javascript arrays from HostObjects
Thank you for this detailed answer. I'll see if I can get the current version building.
View ArticleNew Post: Calling javascript which uses setTimeout/setInterval
Hello, I was able to get this working with a basic example. Then I tried to tweak it to suit my particular needs but I am not having any luck. Technically, I don't specifically need to have the...
View ArticleNew Post: Calling javascript which uses setTimeout/setInterval
Hello! The problem seems to be that you aren't binding your Run function to a DVC instance. Consider defining it as follows:var DVC = function(tag) { //...this.Run = this.RunMethod.bind(this); };...
View ArticleNew Post: Executing multiple functions
I have the following script: string script = @"function1(a) { } function2(b) { function1(b); }" and the following C# code: engine.Execute(script); engine.Script.function1("blah"); I'm getting an...
View ArticleNew Post: Executing multiple functions
Oops, I had a typo in the script. After fixing the typo it works.
View ArticleNew Post: Azure Mobile Services Cannot Load V8 Interface Assembly
Getting the following exception when running my Azure Mobile Service: Exception=System.TypeLoadException: Cannot load V8 interface assembly. Load failure information for v8-ia32.dll:...
View ArticleNew Post: Azure Mobile Services Cannot Load V8 Interface Assembly
Hello AEONSoft, At first glance this doesn't look like a case of missing VC++ libraries; "The specified module could not be found" indicates that v8-ia32.dll itself is missing. Can you connect to the...
View ArticleNew Post: Calling javascript which uses setTimeout/setInterval
That did the trick. I understand the bind method in an abstract sense but without an understanding of how JS handles and changes context its difficult to know when to use it. Your answer prompted me to...
View ArticleNew Post: Azure Mobile Services Cannot Load V8 Interface Assembly
v8-ia32.dll is installed in: d:\home\site\wwwroot
View Article