I tried to create a Note-Window in OriginC (Version 70G SR1).
The following lines (from OriginC-Help) didn't work: Note myNote; myNote.Create("TestNote"); The runtime error message said: "Create not found in external DLL"
I came around with the following code: LT_execute("window -n n TestNote"); Note myNote; Project prj; myNote = prj.Notes("TestNote");
Is this an error in OriginC implementation or am I doing something wrong? Any help or hint is welcome.