The DLL file was successfully loaded, but the functions or methods in the DLL file cannot be called correctly. #2608
Unanswered
wangoptics
asked this question in
Q&A
Replies: 1 comment
-
same issue |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Does anyone know how to use Python to control Fujikura's splicer?
code:
import clr, os
dll_path = os.path.abspath("UsbFsm100Server.dll")
dll = clr.AddReference(dll_path)
print(dll)
from UsbFsm100Server import *
output:
UsbFsm100Server, Version=x.0.0.0, Culture=neutral, PublicKeyToken=null
Traceback (most recent call last):
File "xxx.py", line 7, in
from UsbFsm100Server import *
ModuleNotFoundError: No module named 'UsbFsm100Server'
Beta Was this translation helpful? Give feedback.
All reactions