How to run 3 operations through my USB-6210 at the same time w/o gettin an error

 Hi, I am using a USB-6210 data logger from national instruments to collect data and run it through labview 7.1. However, when i try to run two labview files at the same time on two different channels in the data logger i get an error #50103 "The specified resource is reserved the operation could not be completed. How do i fix this?

Hi Mariachi,
I believe your overall project will be to collect data from
your USB-6210 on multiple lines and save this to a file. Photon Dan is correct
in the reason why you cannot use multiple tasks – because of the multiplexor,
only one AI task can be run at a time. I would suggest putting all lines into
one task and program, therefore eliminating the error, the need for multiple VI’s,
and writing all data to a file at once. If you have further questions, I would
ask that you post more detail about how you are collecting data (LabVIEW?
SignalExpress? Etc) and your program. Unless you are connecting to other
computers, you will not need to use VI Server, TCP, etc.
David L.
Systems Engineering
National Instruments

Similar Messages

  • How can i run multiple instances of Photoshop EXE at the same time on windows 7

    Alright. You may ask why do you need multiple ?
    Assume that i have 10000 PSD files in 10 different folders
    I have a script that just save as them as PNG
    And these files are each 3000x3000 px
    My computer has 8 cores and 1 photoshop exe is only using 1 cpu core
    Also i have SSD raid system it has 750 mb read write per second
    So right now i am wasting my time with running only 1 photoshop exe instead of at least 4

    I'm not aware of a way to run multiple instances or different versions of photoshop at the same time on windows.
    Assuming of course they are all installed on the same operating system.
    On mac versions you can running two different versions of photoshop at the same time, but i don't think that's possible on windows where it
    appears that only one version of photoshop can run at a time.

  • HP DV7 laptop, cant listen and talk from 2 usb headsets at the same time??

    Hi,
    I am trying to use two usb headsets at the same time as my wife and I are doing an online course, but can onle use either one at onc, not both?? Has anyone got any ideas?
    Thanks, Matt

    Hello Mattynsavvy, welcome to the HP Forums.
    It appears that you're trying to use two headphones from your notebook to do an online course.
    The way that you're trying to do this probably won't work. The notebook itself only has one sound card. This card can only output audio to one device at a time. So if you have both USB headsets into ports. Only one will have sound. Just like how the headset cuts off the speakers. You would need a second sound card, or to be using speakers or another computer.
    The only thing I could think of that may accomplish what you're trying is to use the audio/mic jacks on the notebook specifically with a splitter. This may allow the sound to be direct to two headsets. I can not say for certain if this will work or not.
    I was able to find a few YouTube videos with various ways to achieve what you're trying to do, but as they run with 3rd party software attempting those suggestions would be completely up to you.
    I hope this helps.
    Thank you for posting on the HP Forums.
    I worked on behalf of HP.

  • Record with two usb devices at the same time on LOGIC PRO X

    I would like to record both with my Samson USB mic and my guitar wich has also a USB input in the same time. How do i make that happen? Logic Pro X only sees one device whilst recording.

    You need to create an aggregate device in OSX, and then select that as your audio device in Logic's options.
    Then whatever you've set up as the inputs will be selectable within the logic audio buses.
    Here's an official Apple article to get you on your way:-
    http://support.apple.com/kb/HT3956
    Any more questions please post back.

  • I was wondering if you could have one desktop audio playing through your speakers and the other one playing through your apple tv at the same time?

    i was wondering if you could have one desktop audio playing through your speakers and the other one playing through your apple tv at the same time?

    Problem here is you admit you cannot afford the service.
    And you want to blame Verizon for losing a job because you have no cell phone.
    If your job depends on that phone I would pay it on time every time if you need a job to pay your bill.
    No other service is going to treat you any different. And if you cannot afford Verizon's monthly invoice how are you going to afford new devices, activation fees, possible security deposits on any other cellular carrier? You can't.
    Also if you made an arraignment to pay and then decide you cannot do so, why should Verizon extend you service or credit, or why is it you want to use the service and data and not pay for it as agreed.
    Get a prepay phone. Its evident the cost is too high for you to afford on post pay.
    Good Luck

  • Can an Airport extend a wireless network and support a USB printer at the same time?

    Can an Airport extend a wireless network and support a USB printer at the same time?

    Yes, if the AirPort Express is extending the wireless signal produced by another Apple router. The Express cannot wirelessly extend a network produced by a non-Apple router.
    In addition to extending the network and connecting a printer, AirPlay can also be enabled on the AirPort Express, with all services operating simultaneously.
    Please note that only the print function will work if you connect an All-in-One type device to the USB port on the Express. Advanced features like copy, scan, mainentance, etc are not supported when an All-in-One device is connected to the USB port on an AirPort router.

  • How do you keep two users logged in at the same time?

    How do I keep two users logged in at the same time to be able to access home sharing?

    Fast User Switching in Users & Groups or Accounts preferences in Login Options.

  • Run invoke-command on multiple machines at the same time

    Hey all so I read that if I store my New-pssession in a variable then used that in my invoke-command it would run all computers at the same time.
    $a = Get-Content "C:\Users\cody-horton\Desktop\list.txt"
    $session
    for($i=0;$i -lt $a.Length;$i++){
    if(!(Test-Connection -Cn $a[$i] -BufferSize 16 -Count 1 -ea 0 -quiet)){
    Write-Host $a[$i] -foregroundcolor red
    else{
    $session = New-PSSession $a[$i]
    Invoke-Command -Session $session -FilePath "\\My computer\C`$\Users\public\Documents\zip folder.ps1"
    What exactly am I doing wrong I just need to run this script on multiple machines at the same time.
    Thanks.
    Edit: Also what would be the best way to close all the sessions thanks.

    Hi there,
    So what I think you are doing wrong here is that you are overwriting the value in $Session everytime you executed code inside for loop. try the below:
    $a = Get-Content "C:\Users\cody-horton\Desktop\list.txt"
    $session = @() #define this as an array
    for($i=0;$i -lt $a.Length;$i++){
    if(!(Test-Connection -Cn $a[$i] -BufferSize 16 -Count 1 -ea 0 -quiet)){
    Write-Host $a[$i] -foregroundcolor red
    else{
    $session += New-PSSession $a[$i] #add the new session to the array, at the end it will be a collection of sessions
    Invoke-Command -Session $session -FilePath "\\My computer\C`$\Users\public\Documents\zip folder.ps1" #I think the above one won't work..first you need to copy the script locally on the machine and then execute it#Why this won't work because of Second-Hop Authentication
    Have put comments where I edited your code.
    Hope this helps
    Knowledge is Power{Shell}. http://dexterposh.blogspot.com/

  • How can I get rid of multiple pictures at the same time?

    how can I get rid of multiple pictures at the same time?

    Adobe Bridge, lightroom and your file browser (windows explorer or Mac Finder) can select multiple pictures at once and then delete. If you are looking for more than that for information, you will need to be more specific at what your doing, what OS you have, and version of software your using. If necessary post screen shots so we can see what your doing. The more information we have the more detailed of an explaination can can give back to you.

  • How do I view more than one image at the same time in CS6?

    How do I view more than one image at the same time in CS6?

    Hi there
    If you go to Window > Arrange you can choose from several view options. Below I have selected Two-Up Horizontal since I have two images, but you can select other options if you have more than one image.

  • How do i open 2 hotmail outlook accounts at the same time? Thanks.

    How do I open 2 hotmail outlook accounts at the same time? Thanks.

    Safari only lets me to sign in to one hotmail account at any one time. If I am signed in to one account and I open a new window (or tab) the existing hotmail account I am signed in to opens again (I want to sign into second account simultaneously). So I am trying to sign in to 2 hotmail accounts at the same time. Does that makes sense?

  • How do I get 2 layers to move at the same time?

    How do you get 2 layers to move at the same time?

    Thanks for the help folks, sorry I've been away.
    I'd love help with the problem of why I only one track seems to accept clips to play. When I drag them to other tracks or create a track by dragging the clips are grayed out and won't play, but if I drag them to the one track where they're blue they play.

  • How do I delete all of my mail at the same time?

    How do I delete all of my mail at the same time? Or is this even possible? Thanks for your help.

    Unfortunately it isn't possible. You have to select one at a time. You might want to add your name to the many that have requested this feature in the past.
    https://www.apple.com/feedback/ipad.html

  • How do I delete a bunch of pictures at the same time?

    How do I delete a bunch of pictures at the same time?

    Select the ones you want to delete, then go to Photos > Move to Trash.
    To permanently delete them, =you have to go to the iPhoto menu, then select Empty Photo Trash.

  • I am doing two people's jobs and I need to use two separate log-ins on the same website. How can I keep both log-ins open at the same time. Everytime I switch tabs I have to log in again.

    I am doing two people's jobs and I need to use two separate log-ins on the same website. How can I keep both log-ins open at the same time. Everytime I switch tabs I have to log in again.

    Try one of these extensions for multiple cookie sessions.
    Multifox: <br />
    http://br.mozdev.org/multifox/ <br />
    Cookie Swap extension: <br />
    https://addons.mozilla.org/firefox/3255/ <br />
    Cookie Pie extension: <br />
    http://www.nektra.com/oss/firefox/extensions/cookiepie/

Maybe you are looking for