Hyperlinqs no longer working
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
new Hyperlinq(()=>{MessageBox.Show("Hello World");}, "Click Me")
(you have to include System.Windows.Forms to make this work)
new Hyperlinq(()=>{Util.ClearResults();}, "Click Me")
Definitely appears to be a problem refreshing / updating the results.
-Karl
Let me know if this helps.