Can I use a camera for application in Labview and VBAI at the same time ?

Dear all,
I'm trying to save an AVI file with Labview and make an image process with VBAI at the same time, in one machine.
The error : "Camera already in use" displayed.
My Camera is a GIGE and I work with Imaqdx. I've test the multicast mode but it only operate with several machines.
How can I do this ?
Thank's to help me,
Yoann B

I'm not necessarily saying that.  It's been a while since I've used VBAI, so I don't remember all of the capabilities, but if VBAI can do the inspection and recording at the same time, you should be fine.
The trick is that only one program can access the camera at the same time.  That application reserves the camera, thus making it unavailable to others.
Chris
Certified LabVIEW Architect
Certified TestStand Architect

Similar Messages

  • Can I use my Ipod 5th Genereration with Mac and XP at the same time?

    I have a 5th generation. My home system is a Mac my work is an XP. I have all of my music on my home MAc. I want to bring those over and use in the XP environment. Does anyone know if that can be done? When I connected my ipod into the USB on my XP it asked for me to download the software. If I do that will it mess up my Mac interface?? Any help would be appreciated. Thanks!
    ipod video (5th Generation)   Mac OS X (10.4.6)  

    First, please understand that an iPod formatted on a PC (FAT32), will be able to be read by a PC and Mac. But not the other way round. You have 2 options to do it:-
    1. Do a Restore of your iPod on your PC (you need to install the iTunes and iPod updates on your PC), (it will erase all data on your iPod). Once it has been completed, connect it with your Mac and do an update between the iTunes on your Mac with the iPod. After that please install the 3rd party software e.g. YamiPod on you PC, and use this software
    http://discussions.apple.com/thread.jspa?threadID=464031&tstart=0
    Copy all the music on your iPod to your iTunes on your PC
    2. Download and install a 3rd party software xplay2
    (which is not free)on your PC, then it will manage to read your Mac's iPod
    http://www.mediafour.com/

  • HT1589 Can I use more than 1 device ie iPod and iPhone on the same iTunes account and have different music on them

    Can I use more than 1 device ie iPod and iPhone on the same iTunes account and have different music on them

    Yes. Use the option to sync with selected playlists on the music tab when your devices are connected.
    tt2

  • Can I setup my P1606dn to eprint both Mac and PC at the same time?

    Can I setup my P1606dn to eprint both Mac and PC at the same time?

    Hi Poindexter65,
    There is no setup involved to ePrint from a computer.  So, the answer is yes.  All you need to do in order to ePrint, is send an email (attaching whatever you wish to print) to the printer's email address.
    Here is a link with more information about ePrint and specifications for attachment types, file sizes, etc.:  https://h30495.www3.hp.com/help#eprint
    If I have solved your issue, please feel free to provide kudos and make sure you mark this thread as solution provided.
    Although I work for HP, my posts and replies are my own opinion and not those of HP.

  • Use one external harddrive on both pc and mac at the same time

    i bought an iomega external harddrive today
    can i use it on both mac and pc at the same times?
    for ex:
    when i plug in both computer
    i could able to read and write on the hdd on both computer
    since i format it into 4 partitions (2 journal and 2 doc)
    so i wish i can use them separately in 2 computers

    Hi Jerry_L and welocme to Discussions,
    using such USB or Firewire connected external harddrives with two computers at the same time is usually not recommended by the manufacturer.
    Doing so might lead to data-loss and the like.
    Check with the manual of that harddisk to verify.
    Using it with one computer at a time with your partitioning should be doable.
    Regards
    Stefan

  • Why can't I charge my Samsung 4GLTE wifi hotspot and surf at the same time?

    Is the charger too weak to charge the device and surf the internet at the same time?

    Works for me, have done it several times since I got mine.  Something that is totally useless with the old 3G MiFi after they upgraded it.

  • Can I use one account for both my labtop and my ho...

    can I use one account for both my labtop and my home computer?
    Solved!
    Go to Solution.

    Softthunder wrote:
    can I use one account for both my labtop and my home computer?
    Hello,
    Yes you can. You can access your account using any Skype enabled computer/device in any country worldwide.
    TIME ZONE - US EASTERN. LOCATION - PHILADELPHIA, PA, USA.
    I recommend that you always run the latest Skype version: Windows & Mac
    If my advice helped to fix your issue please mark it as a solution to help others.
    Please note that I generally don't respond to unsolicited Private Messages. Thank you.

  • Can we use both INSERT and UPDATE at the same time in JDBC Receiver

    Hi All,
    I would like to know is it possible to use both INSERT and UPDATE at the same time in one interface because I have a requirement in which I have to perform both the task.
    user send the file which contains both new and old record and I need to save those in MS SQL database.
    If the record exist then use UPDATE otherwise use INSERT.
    I looked on sdn but didn't find any blog which perform both the things at the same time.
    Interface Requirement
    FILE -
    > PI -
    > JDBC(INSERT & UPDATE)
    I am thinking to use JDBC Lookup but not sure if it good to use for bulk record.
    Can somebody please suggest me something or send me the link of any blog or anything to solve this problem.
    Thanks,

    Hi ,
              If I have understood properly the scenario properly,you are not performing insert and update together. As you posted
    "If the record exist then use UPDATE otherwise use INSERT."
    Thus you are performing either an insert or an update which depends on outcome of a search if the records already exist in database or not. Obviously to search the tables you need " select * from ...  where ...." query. If your query returns some results you proceed with update since this means there are some old records already in database. If your query returns no rows  you proceed with "insert into tablename....." since there are no old records present in database.
      Now perhaps the best method to do the searching, taking a decision to insert or update, and finally insert or update operation is to be done by a stored procedure in MS SQL database.  A stored procedure is a subroutine available to applications accessing a relational database system. Here the application is PI server.   If you need further help on how to write and call stored procedure in MS SQL you can look into these links
    http://www.daniweb.com/web-development/databases/ms-sql/threads/146829
    http://www.sqlteam.com/article/stored-procedures-parameters-inserts-and-updates
    [ This part you can ignore, Since its not sure that you will face this situation
        Still you might face some problems while your scenario runs. Lets consider this scenario, after the stored procedure searches the database it found no rows. Thus you proceed with an insert operation. If your database table is being accessed by multiple applications (or users) other than yours then it is very well possible that after the search operation completed with a null result, an insert/update operation has been performed by some other application with the same primary key. Now when you are trying to insert another row with same primary key you get an error message like "duplicate entry not possible for same primary key value". Thus you need to be careful in this respect. MS SQL has a feature called "exclusive locks ". Look into these links for more details on the subject
    http://msdn.microsoft.com/en-us/library/aa213039(v=sql.80).aspx
    http://www.mssqlcity.com/Articles/Adm/SQL70Locks.htm
    http://www.faqs.org/docs/ppbook/r27479.htm
    http://msdn.microsoft.com/en-US/library/ms187373.aspx
    http://msdn.microsoft.com/en-US/library/ms173763.aspx
    http://msdn.microsoft.com/en-us/library/e7z8d5hf(v=vs.80).aspx
    http://mssqlserver.wordpress.com/2006/11/08/locks-in-sql/
    http://www.mollerus.net/tom/blog/2008/03/using_mssqls_nolock_for_faster_queries.html
        There must be other methods to avoid this problem. But the point is you need to be sure that all access to database for insert/update operations are isolated.
    regards
    Anupam

  • My Ipad mini does not see my printer. my wife's ipad2 does. We both use IOS8 and upgraded at the same time. How can I remedy this?

    My Ipad mini does not see my printer. my wife's ipad2 does. We both use IOS8 and upgraded at the same time. How can I remedy this?

    OK great info!
    I found 2 possible ethernet to USB adapters:
    By "Plugable":  USB 2.0 to ethernet LAN wired network adapter - seems this will work, but I'll contact Plugable.
    2. Apple USB Ethernet Adapter
    Easily connect your MacBook Air computer to an Ethernet network with the Apple USB Ethernet Adapter. Small and light, it connects to the USB 2.0 port of your MacBook Air and provides an RJ-45 connector that supports 10/100BASE-T performance.  BUT NOT SURE IF THIS WILL WORK ON ANYTHING BUT a MacBook Air…
    One person commented: 
    This little gem used to be the device of choice for adding a second Ethernet interface to a Mac Mini Server and I'd been using one that way for about a year. After doing a software update to 10.6.6 it stopped working. Forewarned is forearmed – it appears that Apple is finally enforcing the MacBook Air system requirement.
    Thanks for any additional comments.
    Best regards,
    Steve Schulte
    Sunday 6 January 2013

  • Can a Mac and it's associated iPhone and iPad be authorized for more than 1 Apple ID at the same time?

    I want to give my wife and daughters their own Apple ID's and have them purchase stuff using the new one, but I don't want them to lose  all of the music and videos they bought using my ID for the last 8 years.
    The main reason I want to do this, is so that when iCloud comes out, I heard that the synching feature is going to be keyed to your Apple ID. My wife, and both of my daughters have always just used my ID to buy everything, and I'm affraid all of our Macs and iPhones and iPods  will synch together.
    If I gave each of them their own ID, and they started buying all of their music on the new ID, could their Macs be authorized for the new ID and mine at the same time? It would still be under the 5 computer limit per account.
    Thanks,
    Kevin

    BatmanFD wrote:
    could their Macs be authorized for the new ID and mine at the same time?
    yes, a single iTunes can be authorized for up to five Apple ID's.

  • My SB Audigy 2 card can't use headset and musicamplifier at the same time

    Hi, i just bought a SB Audigy 2 [D400] and i have downloaded drivers and programs. I run Windows XP SP2.
    The soundcard works fine but it is very very annoying that i physically have to change the jack in the green=line out jack from headset to musicamplifier when i want to use my musicamplifier and change back the jack in the green=line out from musicamplifier to headset when i just want to use the headset/headphones .
    In the shop they told my that i can connect both amplifier and headset at the same time and then with creative software control whether there is sound in the headset or in the amplifier. But i can't simple get it work.
    I tried to use the green to the amplifier and the headset/speakers in the black (line out 2) and then with creative speaker settings softeware choose headphones but still the ampliefier receive the sound and no sound in the headphones. Why? In fact no matter what configuration i try the headphones doesn't work.
    But if i change the jacks so headset is in the green line out then only headset is working and the amplifier doesn't work no matter i put it in sort=line out 2 jack or orange=line out 3 jack.
    Can somebody here tell me if it is possible or not to connect both headset and external amplifier and control by software which to play? and how?
    please help, thx.
    Michael

    If you can have an ASIO compatible music playing system, then it might be possible to have system like you wish when using Creative Audigy 2 card. Since ASIO bypasses Windows Audio System, you can use both 'drivers' (ASIO - WDM/MME/DS) side by side.
    Say you want to play a game (using headset /w mic) and someone other like to listen music at the same time. With ASIO capable system you can output your music for example to "center L/R (stereo) channels" and same time output sounds from other source (using MME/DS/WDM drivers) to normal output channel (Front L/R). Only thing is, you need to set your speakersystem to 4 or 6 (depending which other channel you're using) (and for better 'balance' to adjust "angle" on THX console. You get the THX console by installing Audigy 2 Zs software).
    Try for example http://img332.imageshack.us/img332/463/djs9mo.jpg[/img] width="406" alt="Image Hosted by ImageShack.us" >
    Another option:
    Say you want to play music through external amplifier and play game online with your headset + microphone (eg. others but you listen the music, you play games)
    --> try free http://img332.imageshack.us/img332/4589/tbp7rz.jpg[/img] width="406" alt="Image Hosted by ImageShack.us" >
    If you use ASIO on BeatPort Player you can select L/R individually from the list(s). Same rules as described earlier.
    = You can play from 2 different sources simultaoneusly (ASIO + WDM/MME/DS) to two different outputs without disturbance. The other (WDM/MME/DS) source is set 'automatically' output to (Audigy) "green" port, and the other (ASIO) to "black" or "orange" port (as set).
    .jtpMessage Edited by jutapa on 09-5-2005 05:30 AM

  • Can I use Time Capsule and LaCie at the same time?

    Can I use Time Capsule and LaCie at the same time?

    stephaniefromarlington wrote:
    Before I answer your questions, let me first just say thank you so much for your amazing patience and helpfulness.  Whether or not we get to the bottom of this, I am very, very grateful to you. 
    We will get to the bottom of it, and you're quite welcome.  Don't feel you ought to know all this stuff -- none of us were born with it!
    By the way, in answer to your original question, yes, you can use the Time Capsule while backups are running. There's no conflict at all.
    1)  Estimated size of full backup:  205.94 GB
    2)  My LaCie has available:  11.04 GB of 359.95 GB
    That's part of the problem right there; 360 GB is a bit small to back up 206 GB.  Ordinarily, a Time Machine drive should be 2-3 times the size of the data it's backing-up, so Time Machine can keep a reasonable "depth" of old backups for you.
    It looks like Time Machine is trying to do a fairly large backup, and there just isn't enough room for it.
    But something doesn't quite add up.  Time Machine should have deleted all but your most recent backup, trying to make room for the new one.  But that would mean there should only be a bit less than 206 GB on the disk, not 360.
    A clue may be lurking in your logs.  Use the widget in #1 of Time Machine - Troubleshooting to display the backup messages from your logs.  Locate the backup in question, then copy and post all the messages here.

  • Can we use exceptions and conditions at the same time?

    can we use exceptions and conditions at the same time? Are there any dependencies between exceptions an conditions?

    Exceptions are used when there are some mistakes , or exceeds the supposed values, we can highligt that in different colours for enabling the validator to notice easily. In this we are giving conditions for considering the value as exceptions. suppose, if the values is out of the range -1 to +1 then exception.
    But conditions can be considered as the restrictions given in measure level also. So please elaborate what you meant by conditions

  • Can we use Badi BBP_SOURCING_BADI and BBP_DETERMINE_LOGSYS at the same time

    Hi everyone,
    We need you help. We are working in SRM 7 and ECC 6 EhP 4. We have a doubt. Can we use badis BBP_SOURCING_BADI and BBP_DETERMINE_LOGSYS at the same time in a classic scenario?
    We want to create the contract in ECC, and then we want to return the SC in SoCo in order to create the PO with the SC and the contract.
    We activate both, but the SC is not returned in SoCo.
    Thanks,
    Ivá

    Hi Ivan
    You can use both badi to change srm standard behavior.
    but one shopping cart item and it can have only one follow on document either Contract or Purchase order.
    i presumed that you want to use same sc for two purposes to create both SC and PO but it is not possible.
    for example
    shopping cart item has follow on document created  as a contract But you need to create a another shopping cart to create a Purchase order  w.r.t that contract .
    Once follow on documents are created sourcing flag will be removed .- rule
    BBP_SOURCING_BADI - you can write your custom logic and make way to cockpit .
    BBP_DETERMINE_LOGSYS - Determine your logical system.
    Muthuraman

  • Can I use HP Pro 8600 with usb and wireless at the same time

    Can I use HP Pro 8600 with usb and wireless at the same time?  Sometimes I cannot get the wireless to work, it seems to be my laptop.  It would be nice if I could use the usb, but it doesn't work.  What should / can I do, if anything?
    Sam

    Hi,
    Same physical printer but when connecting to SAME computer using both USB and wireless it becomes two (logical) printers. Probably your default prnter is the wireless one, you have to select the right printer before print .
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

Maybe you are looking for

  • Excel web access web part Refresh

    Dear All, Please let me adress my SharePoint issues to you. Current situation: I currently have an excel file stored in one of my sharepoint libraries. The excel file has two tabs. The first tab contains data exported from a sharepoint list (with dat

  • MacBook won't turn on all the way

    So for the past few weeks my battery has gone from having over an hour of charge to barely a half hour of charge.  I still bring it with me to class.  Yesterday my computer finally lost its charge during the spinning wheel of death as it was trying t

  • MM,PM Business process from scarch

    Hi Gurus, Can any body ley me know the MM,PM business process from scratch. what are the things should be done by MM consultant from scratch, Thanks, Dariya

  • Can't download purchased music from iTunes from an authorized Mac

    I went from a PC to a MacBook Pro in September. When I try to play a particular album, it's got that exclamation point after all the songs on it. After doing a lot of research, I think this happened when I was still using my PC. So what I moved to my

  • Lightroom 4.4 crashing

    I recently moved all my stuff to a new computer. i found several discussion about this. Unfortunately it was like they were speaking another language. I am a beginner, I know this can be fixed but need step to step how it can. Could any of this be th