Hello,
I have been using the following C# to emulate CTRL+V successfully for a while.
But, after I upgrade to version 5.42, the C# code is not working anymore.
I have downgraded to V5.41.1 and it is just working correctly.
Could you please check why it is not working and anything I need to update the make it work on V5.42?
Thank you a lot
I have been using the following C# to emulate CTRL+V successfully for a while.
But, after I upgrade to version 5.42, the C# code is not working anymore.
I have downgraded to V5.41.1 and it is just working correctly.
C#:
var descr = project.Variables["var1"].Value;
System.Windows.Forms.Clipboard.SetText(descr);
instance.ActiveTab.KeyEvent("v","press","ctrl");
Thank you a lot