Does a vi called by two executables need to be reentrant ?

Hi everybody,
this seems to be a newbie question, but this is the first time i'm in this case...This vi store some values in shift registers. The built application (exe format) that call this vi is then duplicate in two folders with different ini file, and they're running at the same time : is it necessary for the vi to be reentrant ?
Thanks for any help,
Vincent
Vincent
Solved!
Go to Solution.

Ok, thanks Dan,
Vincent

Similar Messages

  • My iphone 4 does not register calls made to it. if i make a call from another phone, i can hear it ringing, but it does not register on the iphone. also, i do not get any messages when this happens. then after a day or two it decides to start working.

    My iphone 4 does not register calls made to it. if i make a call from another phone, i can hear it ringing, but it does not register on the iphone. also, i do not get any messages when this happens. then after a day or two it decides to start working.

    Clean iPhone charging port with clean dry toothbrush. See if better. If still problem clean charging port again with toothbrush and small amount of Isopropyl Alcohol.

  • Does anyone know why a web page would suddenly pop up telling me I have a computer virus and need to call them?  When I've called they said they needed access to my computer in order to fix the problem - which I didn't do.  Is this legit?  An Ad?

    Does anyone know why a web page would suddenly pop up telling me I have a computer virus and need to call them?  When I've called they said they needed access to my computer in order to fix the problem - which I didn't do.  Is this legit?  An Ad?

    That is not legit, it is a scam to gain access to your computer and information.
    You can protect against pop-up adware with the AdwareMedic tool Thomas Reed has http://www.thesafemac.com Tom is a major contributor on these communities and great security guy.

  • I am heading to Mexico for a quick business trip, I only want to receive texts and make a call or two. What do I need to turn off to avoid ANY additional charges? Cellular Data/Data Roaming/MMS/visual voicemail? And should I turn wifi on and leave it on?

    I am heading to Mexico for a quick business trip, I only want to receive texts and make a call or two. What do I need to turn off to avoid ANY additional charges? Cellular Data/Data Roaming/MMS/visual voicemail? And should I turn wifi on and leave it on?
    I have a new Iphone 5s.

    wifi is not something you can be charged for

  • Customizing the code inspector with check for two executable statements in same line

    Hi Everyone,
    I have a reuirement to customize the code inspector.I need to create a check 'Two executable statements should not be in the same line'.
    While doing so i am facing one problem as in internal table it is capturing the report as word by word with same row number nd different line number.
    If anyone have worked on this before then help me out.
    I am using CL_CI_TEST_SCAN as superclass and making the changes in the run method.
    Regards,
    Khushboo

    In the source code you will have this in comment right, use the "#EC ENHOK.

  • How can I call a LabVIEW executable from within another LabVIEW executable?

    I have a customer requirement for two LabVIEW executables. Based on their current setup, they need to run executable "A" or "B", both of which are under independent revision control. I have created a third "selection" executable that allows the operator to choose between one of the two, but I am receiving errors when I attempt to call a LabVIEW executable from within a LabVIEW executable using either the "System exec" VI or the "Run Application" VI. If I call a non-LabVIEW executable (such as Windows Explorer) everything works fine.

    > I have a customer requirement for two LabVIEW executables. Based on
    > their current setup, they need to run executable "A" or "B", both of
    > which are under independent revision control. I have created a third
    > "selection" executable that allows the operator to choose between one
    > of the two, but I am receiving errors when I attempt to call a LabVIEW
    > executable from within a LabVIEW executable using either the "System
    > exec" VI or the "Run Application" VI. If I call a non-LabVIEW
    > executable (such as Windows Explorer) everything works fine.
    As with the other poster, I suspect a path problem. You might try the
    path out in a shell window, and if it works, copy the complete absolute
    path to LV to see if that works. LV is basically passing the comma
    nd to
    the OS and doesn't even know what is in it, so you should be able to get
    it to work.
    The other poster commented on subpanels, which is a good suggestion, but
    without going to LV7, an EXE can have open more than one VI. You can
    use the VI Server and the Run method to fire up another top-level VI.
    The decision is whether you want both to be in unique processes.
    Greg McKaskle

  • Please, the battery of my mac air does not last more than two hours, it's been over 30 days I sent for technical assistance and nothing! I am very disappointed with the mac air, I had a very different expectation of apples products!!

    Please, the battery of my mac air does not last more than two hours, it's been over 30 days I sent for technical assistance and nothing! I am very disappointed with the mac air, I had a very different expectation of apples products!!!

    Maybe the problem is not your MB Air......
    Try these:
    Make sure bluetooth is turned off if you're not using it.
    Set your screen brightness to 4 bars.
    See what's loading in your login items.  Delete the ones you don't need.
    Open Activity Monitor - under All Processes see what's using most of your CPU's resources.
    Highlight the ones with the highest %CPU and hit quit process.
    Remember that when Apple says that your battery should last 7 hours, they tested it just browsing the web and not have anything open in the background and screen is set at 50% brightness.

  • Hello everybody,i've forgot my apple password and i wanted to reset it to a new one but i also forgot the security question and the alternative email does not work and i am really need to log in to my apple i d because my iPhone 4g won't  let me access it

    Hello everybody,i've forgot my apple password and i wanted to reset it to a new one but i also forgot the security question and the alternative email does not work and i am really need to log in to my apple i d because my iPhone 4g won't  let me access it so anyone can help me with it or can i put another apple id to it without putting the first password?THANKS FOR YOUR HELP.

    Then call AppleCare and talk to someone in account security.

  • Two class needs to be extends, So I need some  WorkAround ...

    I have a Simple Question
    for accessing SAP PI MAPPING API in ECLIPSE .
    I need to extend one class AbstractTransformation ....
    similary for getting SAX Parser functionalty in ECLIPSE , I need to extend class DefaultHandler..
    So How to Handle this Case : Two class needs to be extends and I know only one class can be extend .
    So JAVA GURUS , I need some workaround .
    Regards
    PS

    Hi,
    First of all Java does not allow multiple inheritance ie u can extend from only one base class.
    work around :
    write two seperate java class say
    1. myJavaMapping.java which extends AbstractTransformation.
    2. mySaxParser.java which extends DefaultHandler
    And now create an object of mySaxParser in ur myJavaMapping class(see below code).
                    mySaxParser parser = new mySaxParser(out);                             //Out is the outputstream
              SAXParserFactory factory = SAXParserFactory.newInstance(); //standard class
              try
                   SAXParser saxParser = factory.newSAXParser();              //standard class
                   this.out = out;
                   saxParser.parse(in, parser);                                                 //begin parsing                                                                               
    // in is inputstream object & has input XML
              catch(Exception e)
                   e.printStackTrace();
    Hope it is clear,
    Anand

  • My task bar in my iphone 5 does not indicate call forwarding (verizon is my carrier

    my iphone 5 does not show call forwarding in task bar (verizon is my carrier

    Settings>>Phone>>Call forwarding ON.
    If it is not there, then you need to take it up with Verizon as it is a carrier feature.

  • Once my iphone4s updats to ios 6.1.2,the electric quantity runs so fast!And the mainboard is so hot, when I use it,especially,make calls. If I make calls exceed two minutes, it gets so hot, that I can't be able to hold.

    Once my iphone4s updats to ios 6.1.2,the electric quantity runs so fast!And the mainboard is so hot, when I use it,especially,make calls. If I make calls exceed two minutes, it gets so hot, that I can't be able to hold. If the battery is full at night, it falls down almost a half, when I get up. I don't know what is wrong with my phone, need help.

    Thanks for the input.

  • Does iMovie 08 work with two external devices?

    Does iMovie 08 work with two external devices without causing latency.  I need to capture the video through an external USB webcam and the audio through a Digital Recording box through firewire.

    YES and there are multiple postings here with complete information
    Also visit:
    http://www.dvinfo.net/conf/forumdisplay.php?f=156
    A Users Group with answers to al your questions.

  • Call an external executable through system exec.vi. Problems:

    I have a executable (Fortran i think). I am using System exec.vi to call it and execute. I write a .bat file to configure the execution. It executes fine, but the executable pops up whenever labview calls it. I want to suppress the executable pop-up. Any suggestions ? Do i need to change this in the .bat file or is there any utility in Labview ? Let me know.
    Kudos always welcome for helpful posts

    Thanks for your reply. I guess I've not explained the problem properly. I run like 10 iterations, for each iteration a window pops up, some calculation takes place and it closes. This happens for 10 iterations. What I want to do is suppress that window from appearing to the front end user. I want all processes taken place in the background.
    Kudos always welcome for helpful posts

  • Does 10.4.6 have two different install CDs for PPC vs Intel?

    Does 10.4.6 have two different install CDs for PPC and Intel?
    Also, is only CD 1 required for OS install?
    Thanks!

    I tried my black OS X 10.4.6 CDs on a G4 yesterday specifically to see if an install from disk 1 only is possible. Sadly it is not. It requires about 400 GB from disk 2 no matter how minimal you try to make it. My disk 2 contains the following and the install needs everything except languages:
    AdditionalEssentials.pkg
    AdditionalSpeechVoices.pkg
    AddressBook.pkg
    Automator.pkg
    BrazilianPortuguese.pkg
    BSD.pkg
    Danish.pkg
    Dutch.pkg
    Finnish.pkg
    French.pkg
    German.pkg
    iCal.pkg
    iChat.pkg
    Italian.pkg
    iTunes.pkg
    Japanese.pkg
    Java.pkg
    Korean.pkg
    Mail.pkg
    MediaFiles.pkg
    MigrationAssistant.pkg
    Norwegian.pkg
    OxfordDictionaries.pkg
    Safari.pkg
    SimplifiedChinese.pkg
    Spanish.pkg
    Swedish.pkg
    TraditionalChinese.pkg
    Have you considered upgrading to Leopard? Here is my general upgrading advoce:
    OS numbers and names
    OS X 10.4.x - Tiger
    OS X 10.5.x - Leopard
    OS X 10.6.x - Snow Leopard
    OS X 10.7.x - Lion
    OS X 10.8.x - Mountain Lion
    More about Macs
    The Apple History site has specifications for every Mac ever produced: http://www.apple-history.com/
    Upgrade to Leopard
    Those wishing to upgrade to Leopard should be aware that install disks can be expensive unless you contact Apple. Details: http://lowendmac.com/deals/best-os-x-leopard-prices.html Standard Leopard installers impose several hardware limitations including speed and RAM size but all these restrictions can be overcome. Google for details. Leopard works well at 500 MHz with 1 GB of RAM and many happy users have less than this.
    Upgrade beyond Leopard
    OSs beyond OS X 10.5.8 require an Intel processor. If in doubt check this: Click the apple at the top left of your screen and select 'About this Mac'. This will give you your OS number. Then click 'More Info' to see which processor you have. If it says PowerPC you cannot upgrade to Snow Leopard and above. If you have an Intel Mac it is well worth upgrading to Snow Leopard now and then considering other options after that. You can buy Snow Leopard here: http://store.apple.com/us/product/MC573Z/A
    Upgrade beyond Snow Leopard
    Information about upgrading Snow Leopard to Lion or Mountain Lion: http://store.apple.com/us/product/MD256Z/A
    Important
    Check that your Mac complies with any requirements. If you are not in the US you should use the Change Country link at the bottom of Apple pages.

  • 11g B2B support of webservice call across two B2B systems

    Hi All,
    Has anyone used the 11g B2B to receive plain SOAP message (a webservice call from TP)
    - does the 11g B2B support to receive SOAP message over HTTP from a TP(trading partner),
    if yes can you please let me know the details on how to make a webservice call between two B2B Gateways
    Regards
    RD

    how much is this different from the use of webservice?Web-service standard is based on SOAP whereas the scenario which you are referring is for synchronous request-response over HTTP (generic or standard based like ebMS). SOAP defines both packaging and transport methods for web-services so any system implementing SOAP communication must adhere to the SOAP protocols whereas the blog which you are referring is talking about one form of transport method only which has nothing to do with SOAP.
    Sync request-response is one type of communication method which is also used in SOAP but the sync request-response which B2B supports as of now is not part of SOAP communication.
    Regards,
    Anuj

Maybe you are looking for

  • HT2534 My Apple ID is not working.....plz help

    My Apple ID is not working I made it yesterday using my PC .......plz help.......

  • Problem in PO  creation using BAPI_PO_CREATE1

    Hi Experts, I am creating the PO by using the BAPI_PO_CREATE1. I am giving the net price for the material in POITEM-NET_PRICE and also 'X' in POITEMX-NET_PRICE. For some material, BAPI is working fine and for some material BAPI is giving the error li

  • D800 E

    I read that if I shoot raw with a D800E and process photos in iphoto that I need the program Apeture for iphoto to work properly.  Thing is I haven't noticed that iphoto isn't working on my raw files, looks like photo's are being processed fine?  Wha

  • Validation on alphanumeric vakues

    Hello there, can anyone explain me that how to do validation on an item. item would take value as Y03.0, so first value always any character and then numbers with or without decimal. value can be (Y03.0 or Y03 or A12 or A12.9 ) so on. thanks in advan

  • Strange problem with out.flush

    Code: package com.test.servlets; import javax.servlet.*; import javax.servlet.http.*; import java.io.IOException; import java.io.PrintWriter; public class MultiThreadTest extends HttpServlet {   public void doGet(HttpServletRequest req,HttpServletRes