Probleme d'accès à la DLL nixnet.dll

Bonjour à tous,
Je suis actuellement en train de coder une application CAN sous l'IDE Delphi. Pour cela, j'essaie d'acceder aux fonctions (nxClear, nxCreateSession) de la dll "nixnet.dll" fournie avec les cartes CAN.
Cependant, lorsque j'effectue ma première instruction par un "LoadLibrary", Windows me renvoie une message d'erreur disant '"Cette application n'a pas pu démarrer car ETSAPI.DLL est introuvable. La réinstallation de cette application peut corrige ce probleme".
Qu'a cela ne tienne, j'ai ouvert les dépendances de la dll et effectivement, il ne manque que etsapi.dll (cf PJ)
OS : Windows XP, SP3
Voici les différentes manipulations que j'ai effectué :
- Recherche dans Windows de la dll ETSAPI.DLL -> Elle ne se situe dans aucun fichier systeme de Windows, ni dans le répertoire National Instruments
- Réinstallation du driver NIXNET v1.6 -> Meme résultat
- Réparation de la base de registre Windows avec un utilitaire -> Meme résulat
Ma question est la suivante : Est-ce que la Dll ETSAPI.dll est un fichier issu de Windows, ou est-elle propre à National Instruments ?
 Ou puis-je récupérer cette dll manquante ? Avez-vous déjà rencontré ce probleme.
Pour information, j'avais déjà importé des fonctions de la Dll "nican.dll" qui fonctionnaient parfaitement car elle ne dépendait pas de la dll etsapi.dll
Merci pour votre aide.
Xavier
Résolu !
Accéder à la solution.
Pièces jointes :
dépendances.JPG ‏124 KB

Bonjour,
Il faut faire une recherche générale car cette dll nixnet.dll peut être présente à plusieurs endroits différent sur le PC. Je pense qu'il faut faire référence à celle qui est dans Program Files (x86).
Cordialement
Jean-Luc D. NI France
National Instruments France
#adMrkt{text-align: center;font-size:11px; font-weight: bold;} #adMrkt a {text-decoration: none;} #adMrkt a:hover{font-size: 9px;} #adMrkt a span{display: none;} #adMrkt a:hover span{display: block;}
Journées techniques : du contrôle d'instruments aux bancs de test
Du 4 au 13 juin : Grenoble - Pari...

Similar Messages

  • I'm having a problem with coreaudiotoolbox and corevideo.dll.

    I'm having a problem with coreaudiotoolbox and corevideo.dll. PC was corrupted, I restored. Now when I launch Safari, I run into errors, can't find these two dll files. Itunes won't download at all because it says something is missing but won't say what. Now what do I do? Apple won't help because they want $50 dollars just to talk with me and I've been down that road before and to no satisfaction. Help please!!

    Taken at face value, you're having trouble with Apple Application Support program files there. (Apple Application Support is where single copies of program files used by multiple different Apple programs are kept, so an AAS problem can affect both iTunes and Safari.)
    Let's try something relatively simple first. Restart the PC. Now head into your Add or Remove programs control panel, select "Apple Application Support", click "Change" and then click Repair.
    If no joy after that, try the more rigorous uninstall/reinstall procedure from the following post (although it's for Vista and 7, just read "Computer" as "My Computer", read "Uninstall a program control panel" as "Add or Remove programs control panel" and assume the system is 32-bit, and you'll be doing the right things):
    Re: I recently updated to vista service pack 2 and I updated to itunes 10.2.1 and ever since I did that my itunes won't open any more.  Itunes starts but before anything loads a window pops up saying that the prograam has encountered a problem and sh...

  • Intermittent problem with TestStand calling CVI DLL calling MSCV DLL

    Sorry about cross post, but I am not sure which group is best to address
    this issue.
    Setup:
    Windows 2000 SP1
    TestStand 2.01f
    CVI 6.0
    MSVC++ 6.0 SP5
    Problem:
    I have a CVI Test Library DLL that contains test functions called by
    TestStand using the C/CVI adapter. The CVI Test Library DLL in turn makes
    several calls to another DLL written in MSVC++. I am experiencing an
    intermittent problem with one of the MSVC functions. The problem ~appears~
    to be stack related, but I am not sure. Among other things, this MSVC
    function accepts a const char * argument that is a TestStand lookup string.
    The function uses this string to access the TestStand API.
    What happens is this: Everything works fine. I then recompile the CVI DLL
    after making some mod, then run. The MSVC++ DLL asserts that the const char
    * arg passed by the CVI DLL is NULL. However, this is not the case if I
    single step through the CVI code. It has happened both with passing
    variables as the const char * argument and as hardcoded strings literals, so
    its not that I am actually passing NULL. The other argument to this
    function is the TestStand sequence context dispatch pointer (LPDISPATCH
    pobjSequenceContextDisp) and it always ~appears~ to be passed correctly.
    The problem is frustrating and hard to debug because I can not
    deterministically reproduce it. The problem ~never~ appears when I debug my
    MSVC++ DLL in Visual Studio. And it only occasionally appears otherwise.
    The problem, when it appears, always appears on the first run after
    recompiling the CVI DLL, though the problem does not happen after ~every~
    recompilation. I'd say it happens 1 in 6 times after a recompile.
    Recompiling the exact same code does not always make the problem disappear.
    If I change the CVI code (code that has nothing to do with the argument
    itself though) and recompile the problem almost always goes away. Selecting
    'Mark all for compilation' and rebuilding does not make the problem go away.
    Only tweaking the CVI code and recompiling does (usually).
    Whats more, the problem appears:
    * With the CVI DLL built as Debug or Release mode.
    * With the CVI default calling convention set to __stdcall or __cdecl.
    * With the C/CVI TestStand adapter set to run in-process or external
    instance of CVI.
    The problem appears to be some sort of stack or argument passing problem
    between CVI and MSVC, though thats just a guess based on the symptoms. I
    have quadruple checked the calling conventions of all declared functions.
    The CVI DLL functions all use TX_TEST (which resolves to __cdecl). The MSVC
    DLL functions all explicitly use __stdcall. Is there a problem with calling
    __stdcall MSVC functions from a __cdecl CVI function?
    I can find no other memory leaks or indications of memory corruption
    elsewhere in either the CVI or MSVC DLLs. Its only this one function that
    exhibits this strange 'null const char *' problem.
    Can anyone offer any ideas about what may be causing this problem? Anything
    else I should check/verify?
    Regards,
    Joe

    Silvius,
    > Although I'm not sure if any of the following are the real cause of
    > your problem, I have the following suggestions:
    Thanks for the reply. At this point any and all suggestions are welcome...
    > 1. There could be a problem with calling
    > __stdcall MSVC functions from a __cdecl CVI function. As a workaround
    > wrap the _cdecl call inside a _stdcall call that is exposed or
    > exported to TestStand or vice-versa. This can be a problem because if
    > _cdecl is used, the calling function is responsible for cleaning up
    > the stack and if _stdcall is used, the called function is responsible
    > for cleaning up the stack.
    I was under the impression that as long as everything was explicitly and
    consistently declared, you could safely mix cdecl and stdcall f
    unction
    calls. Is it bad to do this? Is this a known issue with the CVI compiler?
    I've never seen a problem with doing this under MSVC++.
    I'll try wrapping them in cdecl calls for CVI - though we have a
    depressingly large number of stdcall functions in the MSVC DLL ;-). They
    need to remain stdcall in the DLL because we also call them from Visual
    Basic.
    > 2.Don't mix Debug version of one DLL with the Release version of the
    > other DLL. I had some bad experiences doing this and both DLLs where
    > developed in MSVC. Allways use either Debug either Release versions of
    > DLLs.
    I verified that the MSVC DLLs were either ALL Debug or Release. I too have
    seen nasty problems when MSVC Debug and Release is mixed.
    One thing I had not thought of until your reply: What about mixing CVI Debug
    DLLs with MSVC Release DLLs? Have you ever seen issues with doing this?
    Thanks!
    Joe

  • Problem with BSOD and awvid5.dll

    Hi all,
    Need help urgently.... My computer keeps crashing when playing any type of file that is Quicktime related or uses Quicktime as a base for the player.
    This happens when I view mov files in Firefox, try to transfer movies into my iPod Touch using iTunes and even when i play movies using Quicktime. I'm not sure why this is happening. Each time i try to do anything with the above listed programs I get a BSOD. The BSOD always says there is a problem with awvid5.dll.
    I've researched around the net and all have different causes but no solutions. Some says it's pcAnywhere, graphics card drivers, etc. but no solutions. Anyone has any solutions to this one? As a results whenever I try to transfer movies to the iPod Touch I just use my MacBook Pro but sometimes it's not the quickest solution as I just try to use whichever laptop I'm using currently to transfer stuff to the iPod.
    Another issue I'm having is that none of the Quicktime files play on Quicktime, all I get is static (green/purple hazes) and the sound that's all.
    I'm using a Toshiba Tecra M2, these are the specs:
    Centrino Pentium M, 1.6GHz CPU
    512MB RAM
    nVidia GeForce FX Go5200, 64MB
    Any solutions on this one? Any help would be great. THANKS.

    QuickTime Control Panel / Advanced tab
    Under Video try using "Safe mode".
    Quit and relaunch QuickTime and any open browser and try again.
    awvid5.dll is a PC Anywhere dynamically linked library. See if they offer an update.

  • Problem with installing OS. hal.dll missing or corrupt

    I feel I have a hardware issue with this laptop. It is a M115-S3095. I had XP home installed but had driver issues. Now I have the recovery disk with it I get "Error 10DD0A0057". One time I did get my retail XP copy to install it gave me "hal.dll is missing or corrupt". To add to the mix I can not boot a Linux OS Disk. It just get to the installing logo and thats it. The hard drive has been tested good , Memory check was good. So just to pick brains and I know some of you know alot more than me...Do we need a motherboard replacement ? I work on alot of laptops and this is a new one on me. Thanks in advance for any input.

    > On Thu, 28 Sep 2006 17:18:05 GMT, [email protected] wrote:
    >
    > > I've tried creating a completely new image , it also seems to happen if we
    > > use the image to reimage the exact same computer ( no hardware
    > > diffrences)... any ideas?
    >
    > did it work before? what has changed?
    > --
    >
    > If you have already compiled drivers or have linux.2 please put them on
    > http://forge.novell.com/modules/xfmo...ect/?zfdimgdrv
    > Live BootCd and USB Disk from Mike Charles
    > http://forge.novell.com/modules/xfmod/project/?imagingx
    > eZie http://forge.novell.com/modules/xfmod/project/?ezie
    >
    > Marcus Breiden
    >
    > If you are asked to email me information please change -- to - in my e-mail
    > address.
    > The content of this mail is my private and personal opinion.
    > http://www.edu-magic.net
    yes , on one computer we have used that image before without any other
    problems. The computer we are using is the exact same model as the one we
    used to take the image from.
    In the other case we are taking a computer and imaging it to another drive
    in order to replace the drive. So everything is the same , except for the
    drive.

  • Having problem with svchost.exe/ntdll.dll errors causing GPSVC (Group Policy Client) to crash preventing users from logging into the server.

    Recently (within the past 2 weeks) I have noticed a few of our servers will have problems with the svchost.exe application causing the GPSVC (Group Policy Client) to crash. The only fix at that point is to reboot the server since the GPSVC service is tied
    to svchost.exe and therefore is protected from being manually restarted.
    I noticed the following errors when this occurs:
    Log Name:      Application
    Source:        Application Error
    Date:          7/23/2013 4:35:26 AM
    Event ID:      1000
    Task Category: (100)
    Level:         Error
    Keywords:      Classic
    User:          N/A
    Computer:      Server1.xxx.xxx.net
    Description:
    Faulting application name: svchost.exe, version: 6.1.7600.16385, time stamp: 0x4a5bc3c1
    Faulting module name: ntdll.dll, version: 6.1.7601.17725, time stamp: 0x4ec4aa8e
    Exception code: 0xc0000024
    Fault offset: 0x00000000000cd7d8
    Faulting process id: 0x46c
    Faulting application start time: 0x01ce877f9476ac07
    Faulting application path: C:\Windows\system32\svchost.exe
    Faulting module path: C:\Windows\SYSTEM32\ntdll.dll
    Report Id: d252d26d-f372-11e2-8ad4-005056ac00e8
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Application Error" />
        <EventID Qualifiers="0">1000</EventID>
        <Level>2</Level>
        <Task>100</Task>
        <Keywords>0x80000000000000</Keywords>
        <TimeCreated SystemTime="2013-07-23T08:35:26.000000000Z" />
        <EventRecordID>158950</EventRecordID>
        <Channel>Application</Channel>
        <Computer>AAW19XM2.agency.nwie.net</Computer>
        <Security />
      </System>
      <EventData>
        <Data>svchost.exe</Data>
        <Data>6.1.7600.16385</Data>
        <Data>4a5bc3c1</Data>
        <Data>ntdll.dll</Data>
        <Data>6.1.7601.17725</Data>
        <Data>4ec4aa8e</Data>
        <Data>c0000024</Data>
        <Data>00000000000cd7d8</Data>
        <Data>46c</Data>
        <Data>01ce877f9476ac07</Data>
        <Data>C:\Windows\system32\svchost.exe</Data>
        <Data>C:\Windows\SYSTEM32\ntdll.dll</Data>
        <Data>d252d26d-f372-11e2-8ad4-005056ac00e8</Data>
      </EventData>
    </Event>
    All of our servers are running Server 2008 R2 Enterprise where we use Citrix to deliver desktop sessions to our users, but some are virtual and some are physical. This seemingly impacts our virtual machines more, and our VMs are hosted through VMWare, however,
    about 5 months ago a similar error fired on a non-virtual machine:
    Log Name:      Application
    Source:        Application Error
    Date:          2/27/2013 6:57:58 AM
    Event ID:      1000
    Task Category: (100)
    Level:         Error
    Keywords:      Classic
    User:          N/A
    Computer:      AAW29033
    Description:
    Faulting application name: svchost.exe_gpsvc, version: 6.1.7600.16385, time stamp: 0x4a5bc3c1
    Faulting module name: ntdll.dll, version: 6.1.7601.17725, time stamp: 0x4ec4aa8e
    Exception code: 0xc0000024
    Fault offset: 0x00000000000cd7d8
    Faulting process id: 0x6c0
    Faulting application start time: 0x01ce14e1af313fd9
    Faulting application path: C:\Windows\system32\svchost.exe
    Faulting module path: C:\Windows\SYSTEM32\ntdll.dll
    Report Id: ed3d01c4-80d4-11e2-9128-b499baa9e5e8
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Application Error" />
        <EventID Qualifiers="0">1000</EventID>
        <Level>2</Level>
        <Task>100</Task>
        <Keywords>0x80000000000000</Keywords>
        <TimeCreated SystemTime="2013-02-27T11:57:58.000000000Z" />
        <EventRecordID>286291</EventRecordID>
        <Channel>Application</Channel>
        <Computer>AAW29033</Computer>
        <Security />
      </System>
      <EventData>
        <Data>svchost.exe_gpsvc</Data>
        <Data>6.1.7600.16385</Data>
        <Data>4a5bc3c1</Data>
        <Data>ntdll.dll</Data>
        <Data>6.1.7601.17725</Data>
        <Data>4ec4aa8e</Data>
        <Data>c0000024</Data>
        <Data>00000000000cd7d8</Data>
        <Data>6c0</Data>
        <Data>01ce14e1af313fd9</Data>
        <Data>C:\Windows\system32\svchost.exe</Data>
        <Data>C:\Windows\SYSTEM32\ntdll.dll</Data>
        <Data>ed3d01c4-80d4-11e2-9128-b499baa9e5e8</Data>
      </EventData>
    </Event>
    I've searched and cannot seem to find any information as to what may be causing this, or even really where to start. Would someone be able to help me identify what might be causing this event, specific with the Exception code: 0xc0000024, which causes
    the Group Policy Client service to stop?

    You still out there looking at things? If so I have an update. The issue hasn't stopped, even though it did seemingly die down for awhile, however, it is now back with a vengeance.
    I am able to force it to happen by killing the svchost process that is hosting GPSVC. If I run gpupdate /force, then logout/login it does get GPSVC running again. Furthermore, if I simply start svchost again via the Task Manager GPSVC starts running again.
    When I access the server remotely with KVM it acts just like it does as if I'm logging into it via Citrix/RDP which for Admin IDs gives an error saying "Failed to connect to a windows service. Windows could not connect to the Group Policy Client service...",
    however, normal user accounts just get a message when logging into the server "The Group Policy Client Service Failed the Logon. Access is denied."
    I haven't opened a case with Microsoft yet, but we about ready to because of the increase in these errors.
    If you have any further suggestions that would be great, otherwise I'll provide an update once I get word back from Microsoft.
    **EDIT -- apparently I mistook the the server's SCM's actions as my own. I was able to successfully crash the GPSVC service by killing the hosting svchost process, however, after I crashed it and let it sit crashed for awhile when I attempted
    to restart either by starting a svchost task, or running gpupdate /force it failed. Either that, or there is a timing issue where if we don't restart the svchost process, or run gpupdate /force quickly enough it won't be able to recover without a reboot.

  • Having major problem with deployed installer needing DLLs that I don't seem to use in the application

    I'm a bit confounded on the library situations...I'm not using an RT target...
    though
    when running the deployed executable/installer.... upon start it asks
    for these 2 dlls:  lvuste.dll & lvalarms.dll. which seem to be related to RT  ????  how do I get
    around this?  How would I include these dlls within an executable or installer?
     I'm using 8.5.

    It looks like this was a problem with the way Timed loops link directly to those 2 DLLs.  Does the error ask for those DLLs in a specific folder?  If so you can copy them from their current location (which I believe should be <labview>\resource folder) to the folder that it wants them to be in.  Alternately you can simply remove the timed loops, since timed loops on a Windows PC doesn't really have much benefit over a while loop with a timer.
    Hope this helps... 
    David_L | Certified LabVIEW Architect
    LabVIEW Tools Network | LabVIEW Tools Network Developer Center

  • Problem in creating the simulation dll using SIT 2.0.3,matlab 7.1,labview 7.1

    I am currently using SIT 2.0.3 ,using this toolkit i am trying to create the simulation DLL for labview.but i am getting the following error in matlab command window
    Error: File: C:\SimulationInterfaceToolkit\ModelInterface\basic.tlc Line: 117 Column: 7
    Undefined identifier ReleaseVersion
    Error: File: C:\SimulationInterfaceToolkit\ModelInterface\basic.tlc Line: 117 Column: 25
    The == and != operators can only be used to compare values of the same type
    Error: File: C:\SimulationInterfaceToolkit\ModelInterface\basic.tlc Line: 260 Column: 26
    Undefined identifier ReleaseVersion
    Error: File: C:\SimulationInterfaceToolkit\ModelInterface\basic.tlc Line: 260 Column: 44
    The == and != operators can only be used to compare values of the same type
    Is this a version problem?
    I am using
    Simulation interface toolkit 2.0.3
    Matlab 7.1.0.246(R14) Service pack
    Real time workshop V.6.3
    Labview 7.1
    Microsoft visual C++ 6.0
    Can anybody help me to solve this issue.

    Hi Jayasheela,
    Here are the Read Me files for different versions of Simulation Interface Toolkit. Usually, the toolkit will only work with the versions of software that are explicitly stated.
    Simulation Interface Toolkit 3.0 Readme
    The MathWorks, Inc. MATLAB® / Simulink® application software release 13.x or 14.0, 14.1, 14.2, 14.3
    The MathWorks, Inc. Real-Time Workshop® release 13.x or 14.0. 14.1, 14.2, 14.3
    Microsoft
    Visual C++ 6.0. You can use Microsoft Visual C++ .NET 2003 only if you
    installed the LabVIEW 7.1.1 maintenance release.
    National Instruments LabVIEW Real-Time Module 7.1.x for ETS Targets.
    (Optional) National Instruments LabVIEW FPGA Module 1.1.x, for customized FPGA VIs used in real-time simulations involving FPGA devices
    Simulation Interface Toolkit 3.0.1 Readme
    The Simulation Interface Toolkit (SIT) 3.0.1 updates SIT 3.0
    to support LabVIEW 8.0, the LabVIEW 8.0 Real-Time Module, and the
    LabVIEW 8.0 FPGA Module. You also can use SIT 3.0.1 with LabVIEW 7.1.x. However, you cannot install SIT 3.0.1 for both LabVIEW 8.0 and LabVIEW 7.1.x.
    Simulation Interface Toolkit 3.0.2 Readme
    The Simulation Interface Toolkit (SIT) 3.0.2 updates SIT 3.0.1
    to support LabVIEW 8.2, the LabVIEW 8.2 Real-Time Module, and the
    LabVIEW 8.2 FPGA Module. You also can use SIT 3.0.2 with LabVIEW 7.1.x or with LabVIEW 8.0.x. However, you cannot install SIT 3.0.2 for more than one version of LabVIEW on the same computer.
    This maintenance release also adds support for the following products:
    The MathWorks, Inc. MATLAB® / Simulink® application software R2006a.
    The MathWorks, Inc. Real-Time Workshop® R2006a.
    If you install SIT 3.0.2 for LabVIEW 7.1, you can use
    Microsoft Visual C++ 6.0 to convert models to model DLLs. If you
    install SIT 3.0.2 for LabVIEW 7.1.1, 8.0, 8.0.1, or 8.2, you can use
    either Visual C++ 6.0 or Visual C++ .NET 2003.
    Simulation Interface Toolkit 4.0 Readme
    The MathWorks, Inc. MATLAB® / Simulink® application software release 13.x, 14.x, or 2006a, 2006b, 2007a
    The MathWorks, Inc. Real-Time Workshop® release 13.x, 14.x or 2006a, 2006b, 2007a
    Microsoft Visual C++ 6.0 or .NET 2003
    You can also take a look at this KnowledgeBase article, which condenses some of the previous information.
    MATLAB®, Real-Time Workshop®, and Simulink® are the registered trademarks of The
    MathWorks, Inc. Further, other product and company names mentioned herein are
    trademarks, registered trademarks, or trade names of their respective companies.
    Amanda Howard
    Americas Services and Support Recruiting Manager
    National Instruments

  • Possible problem calling java from Windows DLL

    I'm am developing on Windows NT 4.0 using JDK 1.3.1.
    What I want to do is to create a DLL that calls into java using the Invocation APIs.
    I am able to successfully create a JVM inside my DLL and find the java classes that i need. The problem is if one of those java classes happens to perform a JNDI function (e.g. InitialDirContext), my DLL doesn't ever return from a call to that class's method.
    Does anyone have any suggestions?

    Thanks for your reply.
    All my JNI functions return ok with out error/exception. The problem is, the one function never returns so that I can check for errors/exceptions.
    I found a work around for the problem. For some reason if I wrap the JNI code in a C++ class, the call hangs. But if I pull that code outside a C++ class, it works like it is supposed to. Not sure why this would be the problem.
    Thanks again for your reply

  • [Solved] Wine Problem: Cant Locate Procedure In DLL

    I'm trying to run a windows exe via wine and it when I double click the program a message box pops up that says "The Procedure * could not be located in the DLL MSVBVM60.dll" IIRC this DLL is one of the ms visual basic runtimes and I've tried a few things to remedy this problem but none of them seem to work. I don't really use wine that much so I'm no expert with it, I tried adding the DLL to the preferred list but that didn't fix anything. The DLL's are in the same folder as the application and the app itself is portable so it doesn't need to be installed. I installed the VB6 runtime files with winetricks but I still have the same error. Any help would be appriciated.
    Directory Listing:
    FrogASPI.dll Log.txt MSCOMCTL.OCX MSVBVM60.DLL Readme.txt Xbox Backup Creator.exe
    Last edited by brando56894 (2009-12-07 05:14:14)

    brando56894 wrote:heres the last 515 lines of the output, I copied about 3000 from the terminal (maybe a 1/4 or or so of the total output!) but it was too big to post to pastebin, I tried to redirect the output to a text file using WINEDEBUG=+all wine 'Xbox Backup Creator.exe' > winelog.txt and WINEDEBUG=+all wine 'Xbox Backup Creator.exe'| tee winelog.txt but neither of them worked.  All this doesn't really mean anything to me hopefully it will to someone else.
    It looks to me like those last lines all happen after the process crashes, so I need more output. You can redirect stderr with
    WINEDEBUG=+all wine 'Xbox Backup Creator.exe' 2> winelog.txt
    and it should work.

  • RUNDLL There was a problem starting Appdata/Roaming/Wisdl.dll The specified module could not be found.

    Every time I start my laptop, this message box pops up.
    RUNDLL
    There was a problem starting _____ Appdata/Roaming/Wisdl.dll  
    The specified module could not be found.
    Other then being a pain in the neck it does not seem to cause any performance problems.   I can not find any internet help in fixing this issue.
    Thanks for any help
    Richard

    Every time I start my laptop, this message box pops up.
    RUNDLL
    There was a problem starting _____ Appdata/Roaming/Wisdl.dll  
    The specified module could not be found.
    Other then being a pain in the neck it does not seem to cause any performance problems.   I can not find any internet help in fixing this issue.
    Thanks for any help
    Richard
    Richard
    It sounds as though you’ve had a recent infection and one of your ‘anti’ programs has removed the malware files, or some of them, but missed the entry in the registry, possibly due to an out-dated definitions database. I suggest you, firstly, download and
    run the free Malwarebytes' Anti-Malware from
    http://www.malwarebytes.org/free/ to ensure that you are completely clean. If you then restart the computer and the message is still appearing try one of these, but it is prudent to create a system restore point before you change the registry in (1) below
    by going to Control Panel > All Control Panel Items > System > System Protection (in the left pane) > System Protection Tab > Create and make sure you give it a meaningful name.
    1. The entry is probably in one of the \Run keys, but as the rascal could be hiding in a number of other ‘autorun’ keys, it’s quicker to search the whole registry. Open a Run window (Windows Logo key+R), type regedit and press Enter. Click Edit > Find and
    type the rogue’s name, put ticks in Keys, Values and Data, then click Find Next. When it’s found in the right pane, right-click it and delete it. There should be only one entry but press F3 to continue searching, just to confirm there are no more.
    2. If you’re concerned about making registry changes disable the entry using the system configuration utility, but bear in mind that you’re disabling the entry not deleting it as you would in (1) above. Open a Run window (Windows Logo key+R), type msconfig
    and press Enter. Go to the Startup Tab and remove the tick alongside the rogue’s name. Click Apply, OK, etc. and restart the computer. When it restarts, put a tick in ‘Don‘t show this again‘ as you‘re effectively doing a selective start up.
    Ninety-nine per cent of politicians give the rest a bad name.

  • [SIT 5.0] Problem with running Simulink model dll on RT target

    Hello!
    This a continuation of my problem described here: http://forums.ni.com/ni/board/message?board.id=170&thread.id=431616
    At the moment I am using following versions of software:
    LabVIEW 8.6.1
    LabVIEW Real-Time 8.6.1
    NI-RIO 3.1.0
    Simulation Interface Toolkit 5.0.0
    Microsoft Visual C++ 6.0
    MATLAB 7.4.0 (R2007a)
    NI cRIO-9014
    I have done everything mentioned in http://digital.natinst.com/public.nsf/$CXIV/ATTACH-AEEE-7JSQXS/$FILE/readme_sit_vxworks.txt
    After that I was able to build nidll and nidll_vxworks using Matlab. Then I have configured SIT Connection manager, mapped controls and indicators, selected model dll etc. But when I have tried to deploy it on RT target I got following error message:
    Initializing...
    Calculating dependencies...
    Checking items for conflicts. This operation could take a while...
    Preparing items for download. This operation could take a while...
    Deploying NI_SIT_Replay.lvlib
    Deploying NI_SIT_driversupportVIs.lvlib
    Deploying NI_SIT_ClientConnMngr.lvlib
    Deploying NI_FileType.lvlib
    Deploying NI_SIT_Data Log.lvlib
    Deploying XDNodeRunTimeDep.lvlib
    Deploying NI_SIT_util.lvlib
    Deploying NI_SIT_SITServer.lvlib
    Deploying project01_Driver.lvproj
    Deploying NI-cRIO9014-00E9D6B1(successfully deployed target settings)
    Deploying MD5Checksum pad.vi(8,86 K)
    Deploying NI_SIT_Replay.lvlib:Read Select Data Packet FIFO.vi(24,89 K)
    Deploying NI_SIT_driversupportVIs.lvlibIT Driver FP Strings.vi(2,39 K)
    Deploying NI_SIT_Data Log.lvlib:Allocate Data Log State Machine Buffers.vi(10,17 K)
    Deploying compatWriteText.vi(9,04 K)
    Deploying NI_SIT_Replay.lvlib:Wait for Ack.vi(5,29 K)
    Deploying NI_SIT_SITServer.lvlibITs Read Data Buffer.vi(20,24 K)
    Deploying NI_SIT_ClientConnMngr.lvlib:Find Channel.vi(8,23 K)
    Deploying NI_SIT_Data Log.lvlib:Get Current Configuration from Queue.vi(9,46 K)
    Deploying NI_SIT_Data Log.lvlibend New Group Probe List.vi(5,82 K)
    Deploying NI_SIT_Replay.lvlib:Write to Active FIFO.vi(8,71 K)
    Deploying NI_SIT_Replay.lvlib:Create Configuration FIFO.vi(6,29 K)
    Deploying NI_SIT_driversupportVIs.lvlib:sit Microsecond Timer.vi(9,62 K)
    Deploying NI_SIT_Data Log.lvlib:Get All Configurations from Queue.vi(9,30 K)
    Deploying NI_SIT_Data Log.lvlibwitch Active Configuration.vi(9,77 K)
    Deploying NI_SIT_Data Log.lvlib:Update Current Configuration Log Filename.vi(8,85 K)
    Deploying NI_SIT_SITServer.lvlibITs Send Packet.vi(26,80 K)
    Deploying Invalid Config Data Reference.vi(2,86 K)
    Deploying NI_SIT_driversupportVIs.lvlibIT Set Project Directory Path.vi(16,94 K)
    Deploying NI_SIT_Replay.lvlib:Update TCL Position FIFO.vi(16,39 K)
    Deploying XDNodeRunTimeDep.lvlib:loadlvalarms.vi(32,39 K)
    Deploying NI_SIT_driversupportVIs.lvlibIT Task Loop.vi
    Failed to download NI_SIT_driversupportVIs.lvlibIT Task Loop.vi
    LabVIEW:  Failed to load shared library SITs.*:TaskTakeOneStep:C on RT target device.
    Deployment completed with errors
    I was hoping that upgrading my software will fix all problems. But sadly, it didn't. Any idea? Many thanks for help!

    Hello,
    I also had quite a lot of problems using Labview 8.6.1, RT and SIT 5.0.1. I upgraded a software using Labview 7.1 and SIT 2.0.3 beeing used for 5 years now and it was real pain.
    I not using the SIT as you are (just load the model from a DLL, use a timeloop to step the model and finally close the model) but it seems that SIT 5.0.1 has a bug (confirmed recently by NI tech support) concerning inputs and outputs if you are using an array.
    It seems that if you use an array for the input during the transcoding of the simulink model to the DLL an index is not well taken into account resulting in a model not beeing able to read its intputs. In my case whatever the inputs data could be the outputs were always 0.
    The model has been changed to use only scalar data and everything works fine, ... well using the developpement software :
    I cannot generate an RT target executable as during the deployment it fails all the time.
    I saw once a message concerning SIT VIs deployment errors and it happened shortly after i upgraded my target : SIT 2.0.3 was still installed after SIT 5.0.
    I spent a few years without updating Labview and i am amazed at how many problems occurs with all versions above 8.0.
    Good luck,

  • Problem about Microsoft.Research.Kinect.dll when use Kinect

    Hi everyone,
    I am trying to connect Microsoft Kinect and LabView follow this tutorial http://zone.ni.com/devzone/cda/epd/p/id/6504#0requirements
    I'm using LabView 2010, Vision 2010, OpenNI and PrimeSense. However when I opened the project follow the tutorial above, the notice about Microsoft.Research.Kinect.dll appeared (I added the screen below). If possible, please consider it and help me overcome this problem
    Thank you for any insight
    I'm looking forward to hearing from you
    Mina.
    ---Let it works---
    Attachments:
    1-31-2012 3-23-41 PM.jpg ‏30 KB

    Thank you so much for your help,
    However when I tried to run program, the notice like this appeared (I attached screenshot below) So I wonder whether the error didn't come from the conflict of version of SKD problem. In addition, I'm using window xp, is it suitable for this project?
    Please let me know if any clarification is needed of my issue.
    I'm looking forward to hearing from you.
    Mina
    ---Let it works---
    Attachments:
    2-1-2012 10-32-45 AM.jpg ‏37 KB

  • Problem occured while creating a .dll file which has to be used in CIN

    hi all,
    i am a rookie in labview,iam getting an error while trying to build .dll file  in vc++ 6.0 , i followed all the instructions available in labview "using External Code" manual,the error was as follows;
    Compiling...
    CINsample2.c
    Linking...
    Running LVSB Utility
    The system cannot find the path specified.
    Error executing c:\winnt\system32\cmd.exe.
    sample1.dll - 1 error(s), 0 warning(s)
    plz help.
    santosh.
    Regards,
    santosh

    Hi santosh,
    It sounds to me that you are mistaking CINs (Code Interface Node) with
    DLLs (Dynamic-Link Library). You mention that you want to create a DLL
    in Microsoft Visual C++, but the errors you are getting are related to
    CINs.
    Don't worry! Here are my favorite links to getting started creating and using DLLs with Microsoft Visual C++ and LabVIEW:
    How to Build a DLL with Visual C++
    Creating and Calling LabVIEW DLLs with Various Data Types from Microsoft Visual C++
    I hope that this helps you to get on the right path.
    Have fun!
    - Philip Courtois, Thinkbot Solutions

  • Problem processing multiple files with dll

    I'm using a function in a dll that turns a binary data file into a TSV file with actual numbers.  The function takes three inputs, a pointer to a string for the input file path, a pointer to a string for the file to write and an integer for "integrity check" which as far as I can tell does nothing.  I have the dll in a subvi, pass it a string corresponding to the input file path and let it convert the file.  This works but will only convert the first 254 files then errors out.   The only way I can get it to work again is to close labview completely and reopen it.  My experiment requires the conversion of literally thousands of files so closing and reopening labview gets old real quick.  I have tried creating a reference to the subvi and closing it for each file but this still does not work, I have also tried on windows xp and windows 7.  When the new files are created they have a size of 0 kB and are empty until I close labview then they assume a reasonable size (few kB) and have data in them.  Additionally if I try to delete one of the newly created files while labview is open I get an error saying the file is open in labview.  I can delete the files when labview is closed.  I have also tried opening each file and closing it after the conversion but that does not work either.
    I believe this is some sort of file open limitation but I don't know how to get around it, I'm almost to the point of writing one of those mouse move/button click macros nerds use for games to convert the files because this is driving me insane.

    I managed to get the c code for the dll (it was somewhere on the computer). I can only pass an integer to validity otherwise it errors, is there an unsighed char in labview?
    _declspec (dllexport) int converting(char *filetoRead, char *filetoWrite, unsighed char validity)
    FILE *fpin, *fpout;
    int result;
    int records=0;
    int valid=0;
    unsigned long MTOFL=0;
    unsigned long MT;
    struct {unsigned ADC:12;
    unsigned INVALID
    unsigned MTOV:1;
    unsigned GAP:1;
    unsigned ZERO:1;
    unsigned MTHIGH:
    unsigned R:8;
    unsigned MTLOW:
    } DataRecord;
    fpin=fopen(filetoRead,"rb");
    fpout=fopen(filetoWrite,"w");
    while(1)
    result = fread( &DataRecord,
    if (result!= 6)
    return(0);
    records++;
    if(DataRecord.MTOV)
    MTOFL += (unsign
    if(validity==1)
    if(DataRecord.INVA
    continue; // don't sav
    valid++;
    MT = (((unsigned long)Data
    fprintf(fpout,"%11lu",MTOF
    fprintf(fpout,"%5u",DataRec
    fprintf(fpout,"%4u",DataRec
    fprintf(fpout,"%6u",DataRec
    fprintf(fpout,"\n");
    fclose(fpin);
    fclose(fpout);
    return 0;

Maybe you are looking for