Sending keys to NX

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

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...