Hyperlinqs no longer working
Options
I've tested v4.48.01(Any CPU) and the beta v4.51.03(Any CPU) with a simple Hyperlinq script below, and when the linq is clicked it does not produce any output (though the bottom right status bar indicates it does execute the code.
(Simple C# Expression)
new Hyperlinq(()=>{Console.WriteLine("Hello World");}, "Click Me")
The output does not change on clicking. This used to work fine for me in versions run several months ago. Has something changed?
-Karl
(Simple C# Expression)
new Hyperlinq(()=>{Console.WriteLine("Hello World");}, "Click Me")
The output does not change on clicking. This used to work fine for me in versions run several months ago. Has something changed?
-Karl
Comments
-
This simple expression is working however, which tells me something is wrong with refreshing the output
new Hyperlinq(()=>{MessageBox.Show("Hello World");}, "Click Me")
(you have to include System.Windows.Forms to make this work) -
This does not clear the results as I would expect though...
new Hyperlinq(()=>{Util.ClearResults();}, "Click Me")
Definitely appears to be a problem refreshing / updating the results. -
I just tested this on a colleagues computer, the same version, but it works on his. What computer unique settings or .Net runtime could cause this?
-Karl -
It does not appear to be preference related - could this be some IE version / setting? I confirmed both machines are not using Ryujit. My code is running .net 4.5.2, where as my colleague is running .net 4.5.1. Let me know if that could possibly be causing this?
-
Just build a Virtual Machine with Windows 8.1, ran with .net 4.5.1, and it worked fine. Then upgraded to .net 4.5.2 and it still worked just fine. Any other ideas would be welcome.
-
I've found something that could cause this, and will include a fix in the next beta.
-