I need to call C# method from JMP script. Please guide
I am looking forward to call c# method from JMP.I tried using LoadDll function. but it is not working. Please guide on this. below is codedll = Load DLL("C:/Chap23/SampleJMPCall.dll"); dll << DeclareFunction( "WriteFile", Alias( "Test" ), Arg( UnicodeString, "str" ), Returns( Int32 ) ); result = dll << Test("Here is a message from JMP."); Show(result); dll << UnLoadDLL;