Two while loops working in parallel at the same time

Hello, how can I run a .vi with two while loops working in parallel at the same time? . I want that when I run a vi both can be activated o desactivate, but I can't get it. What can I do?
Thanks a lot.
Luz

Here are some links for state machines.
http://zone.ni.com/devzone/conceptd.nsf/webmain/c7​4cec177a289dbd86256c4e00600196
http://zone.ni.com/devzone/conceptd.nsf/webmain/8C​4EECACF084F8E986256802007B9186
http://sine.ni.com/nips/cds/view/p/lang/en/nid/137​47
http://sine.ni.com/apps/utf8/niepd_web_display.dis​play_epd4?p_guid=B45EACE3DE6756A4E034080020E74861
http://sine.ni.com/apps/utf8/niepd_web_display.dis​play_epd4?p_guid=B45EACE3E1E956A4E034080020E74861

Similar Messages

  • Can I have two projects open on Premiere Elements at the same time? (Elements 13 for Windows)

    Hi there.
    Can I have two projects open on Premiere Elements at the same time?
    The reason I wanna do this is because I've trimmed many hours of clips in one project (One timeline) and I want to start a new project where I have a "clean" timeline and can add clips from the
    first project (Cut and paste). Or how do I bring a trimmed clip from one project into another in a easy way?
    Thanks
    -Dan-

    Your question is in the Photoshop Elements forum.  There is another forum for Premier Elements and this will probably be moved.
    That said, the answer is that Premier Elements has not be designed with the ability to cut and paste from one project to another.  The only "work around" is to "Publish&Share" to a best quality format that matches your project settings.  You can control the output clips with the "work area bars".  You can then add the new clip to the second project.   The output rendering process can, at least in theory, reduce the picture quality.  Depending on formats, settings and footage, it may not be noticeable.
    There is a third party product called Clipmate that some say works, but not always with good results. 

  • HT204053 Can I set up two iCloud accounts on my IPAD3 at the same time? If not how do you sign out of one to sign in to another?

    Can I set up two iCloud accounts on my IPAD3 at the same time? If not how do you sign out of one to sign in to another?

    Welcome to the Apple community.
    You can add more than one account to your iPad, but you can only have one primary account. Secondary accounts which you can add at settings> mail, contacts, calendars do not have all the features of a primary account such as photo stream.

  • How can I open two screens of Adobe digital editions at the same time?

    How can I open two screens of Adobe digital editions at the same time?

    I doubt that you can. Doesn't the Sound prefpane require you to select just one output device?

  • Adjusting two handles of an anchor point at the same time?

    Hi,
    Is it possible to adjust two handles of an anchor point at the same time?
    I want to edit the top shape of this egg shape so that it would be symmetrical on both sides when I do adjust it.
    What is the easiest way to accomplish this?
    Thanks!

    When I move the right handle, I need the left handle to move the opposite way and it doesn't. I don't get what you mean by saying that it "should behave just like you want them already."

  • Acquiring a signal from two separate DAQs at different rates at the same time

    Hi I am trying to setup a system where I need to build two separate arrays one from two separate sets of data. The data needs to be brought in at the same time, but at a different rate. One set is from the PCI-4472 and will come in at ~10Hz, while the other is from a SCXI-1102 that is connected one channel on a PCI-6070E at ~3-5Hz. I was wondering how to have the two be read at the same time, but at the different speed. I am using LabView 6.1. Thanks in advance.

    Hi Muheesh:
    Since your DAQ's are working at an exact multiple of one another, what you could do is fill alternate channels with some "DUMMY" data...like zeros. Then you could index the array and match it up with the faster card. It might seem like a waste of memory, but it will give you two sets of aligned data, which seems to be what you need. If you're operating them at some weird multiple, it's a bit trickier. Whatever you do, you're going to have to insert some bits somewhere. Look for a least common factor (LCF) of your sample rates, and see if you can divide by that before logging the data.
    Eric
    Eric P. Nichols
    P.O. Box 56235
    North Pole, AK 99705

  • Two Telnet read VI's running at the same time interfere with each other

    I have a situation where multiple tests must test multiple UUT’s on the same computer. To send commands to and get responses from the UUT's I use a telnet session. The telnet read VI uses a semaphore. Therefore when two separate top level VI's are running, each calling the Telnet read VI, if one Top Level VI is using the Telnet Read VI the other Top Level VI waits for the first one to complete before it can use the Telnet Read VI. This VI is setup for reentrant execution but because of the semaphore it cannot truly be used as a reentrant function. This causes severe problems when trying to communicate with two different telnet sessions simultaneously.
    In the past I have avoided this problem by compiling everything into an executable. Then each Top Level program runs completely independently with no interdependences. However, now I am implementing Teststand and I need to call the same Top Level VI's. I need to be able to get information into them and back out of them from Teststand. This means that I can no longer compile them into stand alone executables. I did compile each top level VI into its own Share DLL thinking that then each top level program would have its own library to call upon. This did not work. Even though both top level programs are compiled into their own DLL there is still interdependency when calling the telnet read VI. One program waits for the other to finish reading from its telnet connection before it can read from its own telnet connection. Since I have to continuously read from the telnet connection, sometimes for up to half and hour, the tests do not function simultaneously. How can I get around this? Is there a solution?
    Josh
    PS The Telnet Read VI I am refering to came with the Internet Toolset package. Attached is a copy of the VI I use to communicat with the UUT's.
    Attachments:
    GUI_Telnet_W-R_Auto.vi ‏64 KB

    Sorry about the confusion.
    The file I attached is in the hierarchy of two separate top-level VI's. The telnet connect is opened once and closed once in each top-level program. The ref number is then passed into and out of the VI that I attached. I use this VI to repeatedly send commands via telnet and wait for the appropriate responses. The telnet read VI is given a read line separator and reads from the telnet connection until it matches the read line separator with a text string read back from the telnet connection. If not match is found it times out and creates an error.
    I am not sure how to provide an example of the overall scheme since the problem occurs when both top level VI's are compiled each into their own shared DLLs. Those DLLs are then call from Teststand and at some points they are both running at the same time on the same computer connected to two different UUT's.
    The question I have is why does one DLL share functions with the other? When one DLL is using the telnet read VI the other DLL waits for the first one to finish with it before it can it use the telnet read VI. If they were both compiled separately each into their own DLL shouldn't they each have their own set of functions to call upon instead of having to share? I know that if the two top-level VI's are not compiled they cannot both execute the same sub-VI at the same time. The only way to get around this is to set the execution property on the sub-VI to reentrant.
    I actually fixed the problem by setting the VI I attached and the Telnet Buffered Read.VI (called by Telnet Read.vi) execution properties to reentrant. However, I am still concerned about two separate DLLs sharing sub-VIs. Why does it do this?
    Joshua

  • Can I import two sets of data to Essbase at the same time?

    For example, use two MaxL Scripts to import data to one Essbase Application Datatbase in the Same time, is there any impacted or will fail one of them or nothing will happen but just slower?

    Hi,
    It is possible you run 2 dataloads at the same time, there will be probably be an impact in performance than just loading one file at a time, not sure of the impact, you will have to test.
    If you are talking about a BSO cube you could also have a look at the essbase configuration setting DLTHREADSWRITE to see if you can improve the dataload time by increasing the threads.
    If it is an ASO cube then you should be able to do multiple dataloads into different buffers, though you have to commit them to the database at the sametime.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Can I run two midi controllers (keyboard  and pad) at the same time?

    ie.....can I play keyboard and use a pad for an effect of some sort - creating two instraments at the same time. I want to play say, piano on one instrament w/ a keyboard and at the same time play a synth effect on a trigger pad with another instrament (es 2)????????

    Yes.
    set 2 instruments to different midi channels.set the keyboard and pad to match.
    record enable both tracks in arrange.
    check: file/song settings/recording/auto demix by channel if multi-track recording
    this will allow you to record them both.

  • JDev9i-Beta;How could I run two JSP applications in Jdev enviroment at the same time?

    Hi,
    I have two JSP applications located on different directories. I wanted to run both applications at the same time in Jdev enviroment. But the second one failed.
    More info:
    I successfully ran Application1, then minimized the browser and ran Application2, then again minimized the second browser. After I maximized the first browser(Application1) and tried to go thro pages, I received page not found. Because Jdev sat up the Class Path for the newer application(Application2) and looks for pages there. I believe thats why I could not run both at the same time. How could I get around of this?

    hi,
    can you provide more details on this. Are these jsp files part of the same project or different projects. I can not duplicate this issue. Please provide us more information.
    Thank you

  • Not able to keep two OEM ( 11g) Database Console open at the same time.

    Hi Gurus,
    I am running into issues when I try to keep two instances ( TEST and PROD) of Oracle 11g on the same server open in OEM Database Console.
    The issue is when i try to loginto the 2nd OEM database control page on a new tab of internet Explorer ( when the Ist DB console is open in another tab), it close the first one and open the 2nd instance.
    Also trying opening two seperate IE sessions ( without tabs) , still its logs out the Ist instance.
    Any idea why this is happening and How could I have both the OEM DB consoles open at the same time. please advice
    Thanks
    Sheik

    Sheik,
    There are two types of Database Enterprise Managers, one is Database Control(free tool) and another is Grid Control(paid tool). The one that you are using is a free tool with the limitation that at one time, there can be only one database which can be managed by it. For each database managed by DBC, there is a different port number assigned and only when you use DBC at that specific port number, you can manage the said database. You can check the initially assigned port numbers for the databases in the file *$OH/install/portliist.ini*. You can have a read about about it over here,
    http://download.oracle.com/docs/cd/B28359_01/server.111/b28301/em_manage002.htm#sthref97
    The Grid control can manage all the databases under one window only but its a paid version of EM so it can't be used without a proper license.
    HTH
    Aman....

  • Getting two midi threads to start at exactly the same time

    Hello, is it possible to get two threads to start at exactly the same time because when I start two threads or more at the same time that playback midi using a synthesizer, they never start at exactly the same time.
    Any help would be appreciated.

    Use the Behavior framework for making changes in the scene. This uses an internal j3d thread which is in sync with the rendering thread.
    See chapter 4 (Interaction) and 5 (Animation) in the 2nd module of the j3d tutorial (this may not be the correct chapters, since i have a rather old version of the tutorial)

  • Error -50103 when I am trying to access two channels on USB 6366 board in the same time

    I am trying to use two DAQmx tasks attempting to access two channels from
    USB-6366 in the same time. But it gives me an error Error -50103. So I looked
    online and find out it says ' It is not possible to have multiple DAQmx tasks
    attempting to access the same physical device. '. So I am wandering how can
    collect data from my ai0 and ai1 channels in the same time? Here is my code,
    and please help me out. Thanks very much
    Attachments:
    error_-501013.vi ‏27 KB

    Simple - use a single task with multiple channels. Surely the answers in all of the related posts said that. The channel list is just dev1/ai0:1.

  • How to view two clips with 50 % transparency each at the same time?

    How to view two clips at the same time with 50 % transparent each (end of one clip and the starting of the next clip in time line) so that  one overlapping the other, both can be seen.  This is to merge two clips, so that I can stop at the correct frame of the first clip and start at the appropriate frame of the next clip.

    You're familiar with the TRIM-tool?
    http://help.apple.com/finalcutpro/mac/10.1/?lang=en#ver1632caff
    http://help.apple.com/finalcutpro/mac/10.1/?lang=en#ver1632d8e4
    http://help.apple.com/finalcutpro/mac/10.1/?lang=en#ver1632d9ae

  • Two effects concurrently?  all together. at the same time?

    So- I'm trying to have three effects happen at once. quick Fade in- outline float - then slow fade out.
    the fade in is the only thing that looks how i want it to. it fades in evenly all at once. The fade out fades from screen left to screen right. is that because I have it as a long-long slow fade? Can I make it fade all at once instead of left to right?
    I'm having the text fade and after a few seconds of fadeing the outline float kicks in. so both efects are supposed to happen at the same time. am i asking too much?
    I made the outline white, so I should be able to see it flow upwards. thats not the case when I import to fcp. but i do see it happen in the canvas window in live type. Is there something else I need to do in order to see this effect?

    DaNam and Bogie offer solid advice.
    And it's the cancel out message from Bogie that doesn't allow you to have the white outline float up.
    To achieve that you need to select your text in the timeline.
    In the Inspector click on the Style Tab then Outline and click the Enable box. Then change the color to white and this will allow your outline to be white in both LT and FCP.
    Good luck

Maybe you are looking for

  • ISE 1.2 Active Directory Question

    Hi, I have a question regarding using Active Directory as an External Identity Source. Our customer has 4 AD servers in their domain and thus 4 DNS entries for the domain. When I join ISE to the domain DNS resolves to one address and uses that machin

  • Output message is not getting populated

    Hi My scenario is file->XI->file. I have created  source and destination data sturcture as follows mt_input dt_input FILE  xsd.string  0..unbounded mt_output dt_output OUTPUT xsd.string  0..unbounded i have mapped dt_input & dt_output and FILE & OUTP

  • Development & Extension Guide: E-Com 5 - Examples & Tutorials

    Hi all I've got the Development & Extension Guide: E-Commerce 5.0. In this Guide there are references to the Document "Development & Extension Guide: E-Com 5 - Examples & Tutorials" but I Can't find it anywhere on the SAP Service Site and the Link to

  • Hi resultset.previuos() - problem

    Hi all. Im working with jdbc.odbc standart bridge. when I try to do resultset.previous() I get an exception taht I cant fetch backwards. So I tried to change the statement propertites to somthing like - .TYPE_SCROLL_SENSITIVE now I dont get the excep

  • Problem downloading 10.8.3 from App Store

    Hi, can anybody help me with this? I have a Mid 2011 Mac Mini (running OS X 10.7.5). I have purchased 10.8.3 from the App Store but having problems installing it! Basically what's happening is it's "calculating" my update but never gets to the end an