Question

Using .dll files

  • 22 February 2020
  • 2 replies
  • 14 views

Badge

Hi FME Fans,

Is there a way to run a .dll file from within FME and also pass data to it?

Cheers


2 replies

Userlevel 4
Badge +25

You could try the SystemCaller and execute the regsvr32 command. Not sure about passing data into the .dll, I would imagine that's done through parameters and as the SystemCaller allows you to construct a command line that would be the first thing to try.

Userlevel 4

The easiest may be to use the PythonCaller and the ctypes module, but it depends on the contents and the usage of the dll.

https://docs.python.org/3/library/ctypes.html

Reply