Submitted by SimplyLearning on Fri, 03/26/2021 - 13:40
Forums:
Is it possible to send the press enter key command to NX? Similar to the Application.SendKeys("Enter") command for excel.
Is it possible to send the press enter key command to NX? Similar to the Application.SendKeys("Enter") command for excel.
Try using AutoHotKeys AHK
Try using AutoHotKeys AHK
re: send keys
In my experience, the SendKeys command does not work reliably in an NX journal. If you'd like to try it, the syntax should be the same as you use for other applications.
System.Windows.Forms.SendKeys.SendWait("{ENTER}")
You can import the System.Windows.Forms namespace to shorten that up; but that's the basic idea.
https://docs.microsoft.com/en-us/dotnet/api/system.windows.forms.sendkey...