New Post: Build issue on VS 2012 and Windows 7 x64
We're happy to hear that you've found a solution as we continue to investigate this issue. Thank you also for posting the details of your workaround!
View ArticleNew Post: got it all compiled, i got it to run BUT
isn't there a way that you do not have to have all the dlls in the same directory as the executable for v8 to run? Could you create a x86 only clearscript.dll with reference to clearscriptv8-32.dll?...
View ArticleNew Post: An example to share vb6 script control vs clearscript
In my current VB6 app I use scripting to plug in classes that the scripting can maniplate and also call functions within my plugged in classes to effect change and act as events in my main app. This is...
View ArticleNew Post: An example to share vb6 script control vs clearscript
Thanks for sharing this sample, notahack! We're concerned about the comment indicating that the Script property did not allow you to assign a global property. We're going to see if we can reproduce that.
View ArticleNew Post: An example to share vb6 script control vs clearscript
It sure would be easier and more elegant if assigning a new object to a variable as as easy as V8JS.Script.TEST1 = T1; This also works to assign a new object to a variable but it didn't 'look' right....
View ArticleNew Post: An example to share vb6 script control vs clearscript
It sure would be easier and more elegant if assigning a new object to a variable as as easy as V8JS.Script.TEST1 = T1; ClearScript's test code uses this kind of assignment in many places; see the...
View ArticleNew Post: got it all compiled, i got it to run BUT
Hello notahack! We'll try to answer your questions one by one.isn't there a way that you do not have to have all the dlls in the same directory as the executable for v8 to run? Currently ClearScript...
View ArticleNew Post: An example to share vb6 script control vs clearscript
nope assigning an object to a createdobject or assigning a new object to the object passed in does not work for me. V8ScriptEngine V8JS = new V8ScriptEngine("FRED"); string newCode = @" var TEST1;...
View ArticleNew Post: got it all compiled, i got it to run BUT
You are a pretty good guy. If anybody bad mouths you send them to me, I'll set em straight. I worked pretty much all day in integrating this into my project. When I installed 2012 express there was a...
View ArticleNew Post: got it all compiled, i got it to run BUT
I am in a state of bliss because I got clearscript to work in my project. My final hurdle was since my dll that would reference clearscript.dll was strong keyed clearscript.dll,...
View ArticleNew Post: An example to share vb6 script control vs clearscript
The code above initially calls AddHostObject() to create the "TEST1" global property. What you may not realize - most likely because of insufficient documentation on our part - is that AddHostobject()...
View ArticleCreated Issue: V8Update fails on PCs with Traditional Chinese system locale [13]
The V8 build fails apparently because some V8 source files cannot be converted to the Traditional Chinese ANSI code page.
View ArticleNew Post: An example to share vb6 script control vs clearscript
SHAZAM!! A little knowledge goes a long way. I love this project and intend to wring this code out. In my production software I use scripting to process 1000s of documents a day and affect workflow...
View ArticleNew Post: Error Handling and Error Info?
I saw Issue 12 and that you added error handling and information but I can not see how that info is available through any of the c# objects exposed. In the vb6 script control there is an error property...
View ArticleNew Post: got it all compiled, i got it to run BUT
When I installed 2012 express there was a message that said it was for evaluation only and there was a prompt if it was going to be used for commercial purposes. 2010 express did not have any of those...
View ArticleNew Post: Error Handling and Error Info?
Sounds like you've already found it. ScriptEngineException.ErrorDetails contains engine-specific error properties such as source location, script stack trace, etc. ClearScript currently exposes this...
View ArticleUpdated Release: ClearScript 5.3 (May 21, 2013)
5.3.5Fixed invocation of base interface methods on derived interface targets (Issue #14).Fixed V8 and ClearScript builds on certain non-English locales (Issue #13).Added boxed enum reference...
View ArticleUpdated Wiki: Home
8/2/2013: Version 5.3.5 released. More...Description ClearScript is a library that makes it easy to add scripting to your .NET applications. It currently supports JavaScript (via V8 and JScript) and...
View ArticleEdited Feature: .NET enum members do not support script-native equality...
.NET enum members cannot be compared natively in script code; `Object.Equals()` must be used instead. Strictly speaking, this isn't a bug; script-native equality comparison is effectively comparison by...
View ArticleCommented Feature: .NET enum members do not support script-native equality...
.NET enum members cannot be compared natively in script code; `Object.Equals()` must be used instead. Strictly speaking, this isn't a bug; script-native equality comparison is effectively comparison by...
View Article