Sharing Nidaq32.dll in two exe file

I need to run two exe applicatuions at a time which is using Nidaq32.dll. But its showing error like "Nidaq32.dll file not found"
I hope i will get response for this query as soon as possible.
 thanks in advance  

Hi,
Thank you for posting to the NI forums.  Which version of Traditional DAQ are you using?  Does the error occur when you run a single executable or just when you run one executable?  What programming language are you using?
Traditional DAQ is multithread-safe, which means that two threads can use the driver.  However, the driver itself is not multithreaded.  Therefore, two threads can use the same piece of code of the driver (for instance, acquiring analog inputs), but the second thread must wait for the first to finish.
DAQmx on the other hand is multithreaded, which means that two threads can use the same portion of the driver – however, the threads must be related to separate devices.
Please post back with more information about your application.  In the mean time, I’ve placed a link below from another related discussion forum.
Installing NI-DAQ 7.5 driver causes error "nidaq32.dll not found" error in old VB6 code
I hope this helps.
Ed W.
Applications Engineer
National Instruments

Similar Messages

  • How do I move two exe. files to a windows 8 machine

    I have two exe. files I need to move to a windows machine. I believe I may be able to do this via ethernet cables. Is there some set of instructions somewhere that can help me with this? The windows version is 8.xx. I have no idea about it. The last time I bought a non-Apple computer was way back before Windows even  existed. There was such a time. Back in the 80s. The 1980s. This little Toshiba laptop I bought today is here for one reason only and that is to run firmware updater routines on a Davis Weather Console that cannot be accessed via a Mac. I don't have a lot of time to waste on this. I hope somebody knows how to do this. Sure appreciate some help if you can do this.

    Hello lopezcalling,
    The following article provides the necessary steps and information for setting up filesharing with a Windows computer.
    OS X: How to connect with File Sharing using SMB
    http://support.apple.com/kb/HT5884
    Cheers,
    Allen

  • My auto install for Premiere Elements failed and told me i needed to do a restart and try installing again. Having restarted my laptop, how do I install the software? There are two .exe files in the folder - oem and start-up. Which should i run?

    My auto install for Premiere Elements failed and told me i needed to do a restart and try installing again. Having restarted my laptop, how do I install the software? There are two .exe files in the folder - oem and start-up. Which should i run?
    thanks

    for windows you should have an exe and a 7z file.  put both in the same directory and double click the exe.
    Downloadable installation files available:
    Suites and Programs:  CC 2014 | CC | CS6 | CS5.5 | CS5 | CS4, CS4 Web Standard | CS3
    Acrobat:  XI, X | 9,8 | 9 standard
    Premiere Elements:  13 | 12 | 11, 10 | 9, 8, 7 win | 8 mac | 7 mac
    Photoshop Elements:  13 |12 | 11, 10 | 9,8,7 win | 8 mac | 7 mac
    Lightroom:  5.7.1| 5 | 4 | 3
    Captivate:  8 | 7 | 6 | 5.5, 5
    Contribute:  CS5 | CS4, CS3
    Download and installation help for Adobe links
    Download and installation help for Prodesigntools links are listed on most linked pages.  They are critical; especially steps 1, 2 and 3.  If you click a link that does not have those steps listed, open a second window using the Lightroom 3 link to see those 'Important Instructions'.

  • Two .exe files to run sequentially

    Inside a class, I am running two .exe files. But even before the first .exe gets terminated, the second .exe file is getting executed.
    Could someone please tell me how do I run these two .exe files sequentially.
    At present no error is thrown, but the necessary number of files are not created from both the .exe files.

    If I am right in understanding, is this what you meant for me to do. But still from the below code, before the execution of the first .exe, the second .exe is getting executed.
    Please tell me what updations to do in my code.
    public class Compile
         int flag=0;
         public Compile()
         void compileFile(File newFile, String renameSub, File outputfile, String fontName, String IntallPath) throws IOException
              String FirstParam = "C:\\Temp\\Installation\\test.tex";  
              String FirstParam2 = "C:\\Temp\\Installation";
              String SecondParam = "C:\\Temp\\Installation";  
              try
                   Process proc1 =Runtime.getRuntime().exec("cmd /c start /MIN tex " + FirstParam, (String[])null, new File(SecondParam));
                   InputStream stderr = proc1.getErrorStream();
                   InputStreamReader isr = new InputStreamReader(stderr);
                   BufferedReader br = new BufferedReader(isr);
                   String line = null;
                   proc1.waitFor();
                   if(proc1.exitValue()==0)
                        System.out.println("tex is executed successfully");
                        flag=1;
              catch (Throwable t)
                   t.printStackTrace();
              if(flag==1)
                   ... code for second .exe file ...
    }

  • Webserver in seperate exe file??

    Hi Guys
    So - I'm developing a piece of software that aqquires data from a USB board - this has been working well for years, everybody is happy..
    Now I want to publish the results to users via the NI web server.. Using the web publishing tool I have created a html doc from a sub VI within  the main application with the front panel I wish to publish, and that displays various values updated every 5 seconds..(the monitor function, NOT remote control).. I quickly realized that when a number of browsers are looking at the VI my main application starts to hang - have not been able to fully understand why, but I guess the NI core waits for each request to be shipped.. not really a problem since I'm not doing a VI to be published on facebook with +1.000.000 viewers - but since it potentially stalls the entire application, I risk that my measurement is disrupted, which is a no go, since the measurement may be in the field somewhere, and not next to a guy at an office desk.. Thus - I moved the call to the sub-VI into an external call using a static VI reference and the front panel open / Run methods and the "wait untill Done" flag set to false.
    This too is working very well and inside the development system I can now "sabotage" the application with multiple hits on the "refresh" button of a browser without stalling the application.. now problems arise - part because I do not have a full working knowledge of how the runtime engine operates, i guess - but... when I build this program into an exe, I can again stall the program by hitting the "refresh" button fast.... I assume that the runtime engine treats everything called from within the exe file in one thread?? 
    Questions:
    Is there a way (in a labVIEW .EXE file) to call a VI from another VI that totally separates them from each other so that if 'mainprogram' calls 'webserver', and 'webserver' hangs for some reason, this does not cause 'mainprogram' to equally hang? Could I for instance change the execution system of the VI with all 'webserver' related contant in the "execution" options?
    If not - I guess building two exe files 'mainprogram' & 'webserver' and then launch 'webserver' using system exec from 'mainprogram' will prove a solution.
    however - this means that now passing of data is no longer possible - in 2010 using lv8.6, what is the best means to move data back and forth between two seperate exe files? Ideally I would send a cluster of refnum's of the indicators from 'mainprogram' then read the values of these in 'webserver' and update the display here - but is the reference addresses from one exe, anything worth in the other exe (two seperate address spaces etc)?
    Should I learn to use datasockets - or would a TCP approach be the best? We are not talking massive amounts of data - in the area of 15 value and string controls + 2 graphs with less than 1000 points. Remember that this should only be done locally between two exe files on the same computer, to I would prefer to keep this as simple as possible - something like a pipe used in Unix code. 
    Last but not least - is there a way to run 'webserver' as some sort of service, so that the user will avoid having a window open he does not need, or a minimized 'webserver' window in the taskbar?
    many questions - and yes I know that I can read all about datasockets and TCP in the forum halls - and I'm doing it, but I would prefer to not waste too many days brushing up on new stuff not needed because my plan is wack from the start..
    Thank you for your help. 

    this is my question regarding the .exe files.
    what if i whant to make my project available for every one, not only for those that already have jre instaled, and someone that doesn't know or doesn't want to install jre want's to benefit from it????
    what do u have to answer to that??
    a serious answer please..!!

  • Linking swfs or exe files?

    I need help with a Flash AS3 project that includes about 30 videos. I needed to break it in smaller pieces because it is a large file (over 300 mb) and every time I wanted to publish the entire project flash crashed.
    Here is my test:
    I have two exe files that should link back and forth.
    Intro_YIM.exe, which has a button that links to Videos_FrontPage_YIM.exe
    Here is my code, which is in Intro (button name= nav_4).
    nav_4.addEventListener(MouseEvent.CLICK, gotoVideoFront);
    function gotoVideoFront(event:MouseEvent):void {
      var url:String = "Videos_FrontPage_YIM.exe";
      var request:URLRequest = new URLRequest(url);
      try {
        navigateToURL(request, '_self');
      } catch (e:Error) {
        trace("Error occurred!");
    Problem:
    The link seems to work, but there is a message that says save or run. When I click run, there is another message that says the file can't be open.
    Questions:
    1. Is there a better way to handle links using executable files using Flash CS5 and AS3?
    2. If swfs were used, how can I have a main page displaying all other swfs as they are linked?

    Kglad:
    Yes, initially I thought that exe files was the way to go. However, I've been searching for options and found that by using the class Loader, I can load swfs files instead of exe files.
    Here is what seems to work with only swf file:
    var my_loader:Loader = new Loader();
    nav_4.addEventListener(MouseEvent.CLICK, startLoading);
    function startLoading(e:MouseEvent):void {
        my_loader.load(new URLRequest("Videos_FrontPage_YIM.swf"));
        addChild(my_loader);
    Problem: I have a interface, which loads all other files by way of buttons. For instance, nav_4 button loads the file Videos_FrontPage.swf. When this movie loaded, the interface was also gone.
    How can I keep the same interface and still be able to load all other movies?
    Your help is appreciated.

  • Open an extern application (exe-file or dll) from a new button in SAP B1

    Hi,
    i want to start an extern Application with a new button in SAP Business One. The exter application should started with two parameters. It can be handled with an exe-file or with a dll. I dont know what its better....
    My question is, how can i open the extern application with two parameters from a button in SAP Business One. Can someone give me codeexample?
    thanks in future and best regards,
    Steffen

    Hi Steffen,
    Adapted from Re: Start Addon From another addon
    Dim startInfo As System.Diagnostics.ProcessStartInfo
    Dim pStart As New System.Diagnostics.Process
    startInfo = New System.Diagnostics.ProcessStartInfo("C:Program FilesSAPSAP Business OneSAP Business One.exe", "arguments")
    pStart.StartInfo = startInfo
    pStart.Start()
    Hope this helps,
    Ian

  • Hello, I have two questions on time capsule  I can only have it on my external hd files and free up my internal memory to my mac  I can use an external hard drive, in my case a lacie rugged as shared memory for my two computers

    Hello, I have two questions on time capsule  I can only have it on my external hd files and free up my internal memory to my mac  I can use an external hard drive, in my case a lacie rugged as shared memory for my two computers

    I have a mackbook pro and an iMac if I buy a time capsule 2tb airport, I can use it with time machine and what would be the best way to use it.
    There is no particular setup required for TM.. both computers will create their own backup sparsebundle which is like a virtual disk.. Pondini explains the whole thing if you read the reference I gave you.
    and how to use time capsule airport whit other external hd to use my old lacie airport with the new time capsule
    Up to you.. you can plug the external drive into the TC and enjoy really slow file transfers or you can plug it into your computer and use it as external drive.. which is faster than the TC.. and TM can include it in the backup.
    Again everything is explained in the reference.. you are not reading it.

  • Get these two error messages when I run the iTunes exe file:  Error 2 and Error 2 (Windows error 2).  Both say Apple Application Support is required.  Uninstalled and tried to install again several times.  Using Windows 7 64 bit on laptop.

    Trying to install iTunes on my Dell laptop with Windows 7 - 64 bit.  Get these two error messages when I run the iTunes exe file:  Error 2 and Error 2 (Windows error 2).  Both say Apple Application Support was not found.  Can anyone tell me why this is happening?

    See Troubleshooting issues with iTunes for Windows updates.
    tt2

  • I accidentally added two .doc files, they show in iTunes file sharing, but don't show on iPad?

    I accidentally added two .doc files by dragging and dropping into itunes, under my device, then the app tab, then file sharing for Adobe Reader, they show in iTunes file sharing window, but don't show on iPad 3, and I cannot delete them on iTunes screen? Please help!

    First, I would advise you to apply Tao philosophy to this. Given the dysfunction of most software, if this was just an accidental copy and you don't want them on iPad and they are not showing up anyway, what's the problem? Forget it. It's not worth the hassles. I'm more concerned that you have psychological issues you need to be dealing with, not this. You are making much too unnecessary work and stress for yourself.
    As for deleting them, I'm assuming you highlighted them and hit delete and it didn't work. If not, it should. Works for me. But if it doesn't, my advice is also not to worry about it, as annoying as the clutter is. It will eventually resolve itself (like when your data files corrupt or your iPad crashes, LOL. (I apologize for my cynicism but I am fed up with dysfunctional software). It's not worth the hassles of trying to figure out petty issues.
    As for me, I have the opposite, and very serious problem. I've got Reader on my iPad too. But I can't move the pdfs out of it and onto my laptop with iTunes' dysfunctional file sharing. I get the error "file cannot be copied because you do not have permission to see its contents." I have hundreds of pdfs on my iPad that I converted from web surfing with other programs that also don't work and I can't get them off the iPad for backup and to have a synced library I can access from both laptop and iPad.
    I called iTunes twice and both times they blamed it on the app, saying iTunes file sharing doesn't support third party apps and that I should call Adobe and talk them into writing the code that will work with iTunes. Yeah, right. And Reader is not the only problem. This is happening with iAnnotate and Write PDF and other apps.
    I suspect that both of us have the root problem, perhaps Apple's greedy refusal to support the apps that it sells in the app store and are quasi-integrated enough to show up in the file sharing documents list, but can't be moved or deleted; and the apps that don't bother to make their apps fully work with iTunes file sharing.
    If anyone has any solutions ......

  • HT2305 I downloaded, and have two .msi files and one setupadmin.exe file. I click the latter and nothing happens?

    I downloaded 2 updates (download only), and there's two  .msi files and one setupadmin.exe file. I click the latter and nothing happens? How am I meant to do install these updates?

    Sorry I forgot to mention I was doing this on a PC with Vista (the heading was Windows so I didn't bother to mention this). Anyway by trial and error I found that you can click on the .msi files to install them. The files were downlads of updates to iTunes and iCloud Control Panel.

  • EXE file can not ins microsoft.kinect.dll file

    I develope a labview project about using kinect to make some guesture control. The project itself can run with no problem, but when I create a EXE file for this project as a application, the program will always search for Microsoft.kinect.dll file, I really have no idea what happened to this?Can someone help me to figure out where the problem is?Thanks in advance.

    I need help in this too. can anyone help please. 

  • Now that File Sharing is available. Two questions about feature.

    Now that File Sharing is available. Two questions abou the new feature.
    Question 1 - If you have an individual subscription, can you share your files with someone else who has Creative Cloud subscription such as design agency?
    Question 2 - If you have a Team subscription can each member choose which files they sync so they don't sync everything all the time but still have access to the entire team files?

    No to both, unfortunately.

  • Calling a function in an EXE file from Java Program

    Hi Im having a function which is written in c program.i need to call that function from my java program, if i create a shared library (DLL) for my C code then it works but my requirement is i dont want to create that DLL , like in it would be an executable and my java code should access that function in that C program

    I understand the usage od a DLL but the thing is if i convert the exe to a DLL
    the server doesnt start at all so what i need is that i dont want to change
    that .EXE into a .DLL,let it be an executable. that executable is in running mode
    and through my java program i need to call a function in that EXE file.
    Is ther any way to do it?Nope, but you have another problem: why can't you separate your server program
    into a .dll part and a startup part? Both, when properly linked against each other
    should give you an executable file.
    kind regards,
    Jos

  • Linking two .exe projectors

    I am trying to link two .exe projectors. is there specific
    actionscript to load/unload .exe as opposed to .swf files?
    (PC)>

    Andymorph wrote:
    > I am trying to link two .exe projectors. is there
    specific actionscript to load/unload .exe as opposed to .swf files?
    (PC)>
    You could try local connection or shared object to
    communicated between
    two files.
    What is that you try to do to be exact, I might have more
    specific answer for you,
    or related tutorial perhaps...
    Best Regards
    Urami
    Beauty is in the eye of the beer holder...
    <urami>
    If you want to mail me - DO NOT LAUGH AT MY ADDRESS
    </urami>

Maybe you are looking for