<div dir="ltr"><div><div><div><div>Dear Developers,<br><br></div>Hi,<br></div>I have a C++ program and I want to package it under the tools menu. I made a dll from my program. <br>My dll gets two input ( pdb name and volum density level ,)<br>and generate the output. when I save the python codes to execute my dll in the chimera IDLE, every thing works well and my program starts working and generates the output. here is the code that I ran in the IDLE:<br>  <br>     import ctypes<br>     dll = ctypes.CDLL('tracer_v2.dll')<br>    dll.calc.argtypes = [ctypes.c_char_p, ctypes.c_double]<br>    dll.calc.restype = ctypes.c_int<br>    print(dll.calc('1733_H',3))<br><br></div>The problem that I faced is that when I add an extension button to the chimera and wants to call my function (calc('1733_H', 3) ) from there, I get an error:<br><br><span style="color:rgb(61,133,198)">WindowsError Exception in Tk callback<br>  Function: <function command at 0x0D1A89B0> (type: <type 'function'>)<br>  Args: ()<br>Traceback (innermost last):<br>  File "C:\Program Files (x86)\Chimera 1.10.1\bin\lib\site-packages\Pmw\Pmw_1_3_3\lib\PmwBase.py", line 1747, in __call__<br>    return apply(self.func, args)<br>  File "C:\Program Files (x86)\Chimera 1.10.1\share\chimera\baseDialog.py", line 449, in command<br>    getattr(s, buttonFuncName(txt))()<br>  File "Z:\Tracer_Chimera\GUI\TracerUI\gui.py", line 43, in Apply<br>    TracerUI.mainchain()<br>  File "Z:\Tracer_Chimera\GUI\TracerUI\__init__.py", line 9, in mainchain<br>    dll = ctypes.CDLL('tracer_v2.dll')<br>  File "C:\Program Files (x86)\Chimera 1.10.1\bin\lib\ctypes\__init__.py", line 365, in __init__<br>    self._handle = _dlopen(self._name, mode)<br>WindowsError: [Error 126] The specified module could not be found<br><br></span></div><div><span style="color:rgb(61,133,198)"><span style="color:rgb(0,0,0)">Would you please help me know how I can fix it?</span><br><br></span></div><div><span style="color:rgb(0,0,0)">Thanks, <br></span></div><div><span style="color:rgb(61,133,198)"><span style="color:rgb(0,0,0)">Maryam Arab<br></span></span></div><div><span style="color:rgb(0,0,0)">Research Assistant<br></span></div><div><span style="color:rgb(61,133,198)"><span style="color:rgb(0,0,0)">Old Dominion University</span><br></span></div><div><div><br><br></div></div></div>