Dynamic calling of subsequence and wants to stop main sequence

HI All
I want to load a LabVIEW VI through TestS tand dynamically. 
For that I am calling a code module in one sequence and calling this sequence in the sequence call in the Main sequence.
What I want to do is , when this VI gets launched through code module( which is used in sequence) this should run in background and my main sequence should complete its execution after executing all steps.
The VI which I have launched through sequence call should run continuously.
However the issue which i am facing is my main sequence is not completing its execution until and unless I stop the VI. I have tried launching the sequence in new thread and new execution. But still it waits for the execution to get complete.
How to stop the main sequence and keep the VI running in background??
Thanks in advance

OHHHHH I missed that part.  You mean like this example.
You need to do it in a new execution.  Otherwise the execution of your test won't complete because one of its threads is still out there.  Also, you need to set the execution settings like this:
Hope this helps.
jigg
CTA, CLA
teststandhelp.com
~Will work for kudos and/or BBQ~
Attachments:
OriginalAutomation.seq ‏6 KB
AsynchVI.vi ‏8 KB

Similar Messages

  • HT1222 how can i stop the update processing of ios7 on my ipad.  I changed my mind and want to stop it

    I need help stopping the apple software that I just started on my ipad...ios7.   I changed my mind and want to stop it... HELP

    Hi,
    As I stated before you do not get iTunes 11 on your ipad. Are you getting a message on your works computer to update iTunes on the computer from version 11 to 11.1? If you select not to update iTunes, can you still sync your ipad to iTunes 11?
    Jim

  • Have new MacPro notebook, started to migrate things from Mac and want to stop midstream...how?, Have new MacPro notebook, started to migrate things from Mac and want to stop midstream...how?

    I have a new MacPro notebook, I started to migrate things from older Mac and want to stop mid stream, how do I do this?

    The only way to do that is by turning off your computer. However, this may create some problems in Mac OS X, so I recommend you to finish this migration. After migrating, if you don't want the migrated files, create a new user in System Preferences > Users & Groups, and delete the old user

  • HT202667 I am ditching my non-Apple email address and want to stop using it. My husband's ID is his icloud email, why can't mine be?

    I don't want to run two email addresses and want to use my icloud email address for all correspondence. Itunes keeps sending me emails to my old address and it won't let me change my Apple ID to my icloud address. My husband's is using his without any issues. Is there a way round this?

    I'm afraid not. While people who started with iTools or MobileMe had their @mac.com/@me.com (and now @icloud.com) address as the ID from the start, and people who open a new Apple ID and iCloud account at the same time from the iCloud preference pane can choose to make the @icloud.com address the ID, if it's the case that your ID is a non-Apple email address you can change it to another non-Apple email address but you cannot change it to your @icloud.com address.
    You can of course set up forwarding from the ID address to the @icloud.com address so that you only have to look in one place. However you should be aware that if the setup means that you can only be contacted by Apple at the @icloud.com address, then if you have a problem such as a forgotten password or a corrupted account, Apple can only contact you at an address you cannot access so it's essential to have a 'rescue address'.

  • Best way to downsize images and create timelapse/stop motion sequences of various durations

    I`m wanting to know should I use compressor to add image sequence and downsize images, or aperture to downsize a folder of images, (i`m talking 4000 to 10,000 photos in one folder). What app is faster and more stable (reliable in converting the whole batch without crashing) ?
    I had been doing some mix of stop motion and timelapse and wanted to downsize the images, then take them into FCP.X to create a video,
    from there I would be adjusting the frame duration for different groups of photos in the one time line, some groups will have slower frame durations, others faster frame durations depending on the effect I want.
    Is FCPX the best choice to do this in? Or should I select the photos I want at a particular frame duration and process/output them in another software first.
    Then take them into FCPX to put with other sequences of footage.
    Another related question, Compressor, Ive applied a destination and setting by dragging them from the templates, but the following message comes up for the video when I click "submit.."
    - Each target assigned to a job must have a setting and destination.
    the source is small, for smallest quicktime output, the destination is users movies folder...
    any suggestion would be great,
    thanks,

    If I want to keep the original image file size I would choose a different location? (to make a copy at lower resolution). (some images I want for printing at A2 but haven`t the time to siphon those out yet).
    Thanks for the request I hope it is moved (will I be notified via email?)
    regards my 2nd question, i`ll clarify that a bit more for the FCPx forum,
    ...Compressor, Ive applied a destination and setting by dragging them from the templates, but the following message comes up for the video when I click "submit.."
    - Each target assigned to a job must have a setting and destination.
    I already set the source to small, for smallest quicktime output, the destination is "users movies folder"...both were dragged up into the fields required near the video thumbnail.
    Not sure what to do from there it wont let me proceed.

  • Dynamically calling stored procedure and getting result set c++

    Hello,
    I am trying to write some c++ code that will dynamically bind values to a stored procedure and excute the procedure and get back a resultset. The problem I am running into is how to get back the resultset. Any help or example would be highly appreciated.

    int main(int argc, char* argv[])
    OCIError* pOciError;
    char* pConnectChar = "dbname";
    char* pUsernameChar = "scott";
    char* pPasswordChar = "tiger";
    int answer;
    OCIStmt* pOciStatement;
    char* sqlCharArray = "BEGIN :success := sp_ListEmp; END;";
    int id;
    char ename[40];
    OCIEnv* g_pOciEnvironment = NULL;
    OCIServer* g_pOciServer = NULL;
    OCISession* g_pOciSession = NULL;
    OCISvcCtx* g_pOciServiceContext = NULL;
    sb2* pIndicator=0;
    sb2* pIndicator2=0;
    sb2* pIndicator3=0;
    OCIDefine* pOciDefine;
    OCIDefine* pOciDefine2;
    OCIBind* pBind;
    OCIStmt* cursor;
    answer = OCIInitialize(OCI_THREADED, NULL, NULL, NULL, NULL);
    answer = OCIEnvInit(&g_pOciEnvironment, OCI_DEFAULT, 0, NULL);
    answer = OCIHandleAlloc(g_pOciEnvironment, (void **)&pOciError, OCI_HTYPE_ERROR, 0, NULL);
    answer = OCIHandleAlloc(g_pOciEnvironment, (void **)&g_pOciSession, OCI_HTYPE_SESSION, 0, NULL);
    answer = OCIHandleAlloc(g_pOciEnvironment, (void **)&g_pOciServer, OCI_HTYPE_SERVER, 0, NULL);
    answer = OCIHandleAlloc(g_pOciEnvironment, (void **)&g_pOciServiceContext, OCI_HTYPE_SVCCTX, 0, NULL);
    answer = OCIServerAttach(g_pOciServer, pOciError, (unsigned char *)pConnectChar, strlen(pConnectChar),
    OCI_DEFAULT);
    answer = OCIAttrSet(g_pOciSession, OCI_HTYPE_SESSION, (unsigned char *)pUsernameChar, strlen(pUsernameChar),
    OCI_ATTR_USERNAME, pOciError);
    answer = OCIAttrSet(g_pOciSession, OCI_HTYPE_SESSION, (unsigned char *)pPasswordChar, strlen(pPasswordChar),
    OCI_ATTR_PASSWORD, pOciError);
    answer = OCIAttrSet(g_pOciServiceContext, OCI_HTYPE_SVCCTX, g_pOciServer, 0, OCI_ATTR_SERVER, pOciError);
    answer = OCIAttrSet(g_pOciServiceContext, OCI_HTYPE_SVCCTX, g_pOciSession, 0, OCI_ATTR_SESSION, pOciError);
    answer = OCISessionBegin(g_pOciServiceContext, pOciError, g_pOciSession, OCI_CRED_RDBMS, OCI_DEFAULT);
    answer = OCIHandleAlloc(g_pOciEnvironment, (void **)(&pOciStatement), OCI_HTYPE_STMT, 0, NULL);
    answer = OCIStmtPrepare(pOciStatement, pOciError, (unsigned char *)sqlCharArray, strlen(sqlCharArray),
    OCI_NTV_SYNTAX, OCI_DEFAULT);
    answer = OCIHandleAlloc(g_pOciEnvironment, (void **)(&cursor), OCI_HTYPE_STMT, 0, NULL);
    answer = OCIBindByPos(pOciStatement,&pBind, pOciError, 1, &cursor, 0,SQLT_RSET,
    pIndicator2, 0,NULL, 0,0,OCI_DEFAULT);
    answer = OCIStmtExecute(g_pOciServiceContext, pOciStatement, pOciError, 1, 0, NULL, NULL,
    OCI_COMMIT_ON_SUCCESS);
    answer = OCIDefineByPos(cursor,&pOciDefine, pOciError,2,&id,sizeof(int),
    SQLT_INT,pIndicator, 0, 0,OCI_DEFAULT);
    answer = OCIDefineByPos(cursor,&pOciDefine2, pOciError,1,ename,40,
    SQLT_STR,pIndicator3, 0, 0,OCI_DEFAULT);
    if (answer == 0)
    while ((answer = OCIStmtFetch(cursor,pOciError, 1,OCI_FETCH_NEXT,OCI_DEFAULT)) == 0)
    printf("fetched id %d and name %s\n",id,ename);
    answer = OCIHandleFree(pOciError, OCI_HTYPE_ERROR);
    return 0;

  • I use Microsoft outlook and want to stop getting mail into the apple mail as well

    I have always preferred the microsoft outlook program and have never enjoyed the apple mail as I can't do the things I like. Plus we also use a PC for work and we need the outlook appointments etc to merge the way we like them to.  Can I somehow stop the apple mail program for also getting all the emails? and if I can how do I clean it out without loosing and emails etc.

    Just disable all the accounts in Mail or delete them after saving your mail into .mboxes. These can be imported into Outlook.

  • I keep getting a pop-up message that api.del.icio.us:443 USPS uses an invalid security certificate and want to stop getting this message. How can I get this to stop?

    The message goes on to say the certificate expired on 5/22/11 at 3:11 pm Error code: sec_error_expired_certificate.
    I get this pop-up message about every 5 minutes.
    I am not an IT professional or advanced user so please provide a simple solution. Thank you.

    I'm having this problem too. Tried the above link and thinking that sounded pretty straight forward, unfortunately this message was displayed:
    This XML file does not appear to have any style information associated with it. The document tree is shown below.
    <!--fe12.api.del.ac4.yahoo.net uncompressed/chunked Tue May 24 08:51:42 UTC 2011 -->
    <result code="access denied"/>
    Any help, please?!

  • How to stop main thread ?

    Hi,
    Inside my java class, after I launch a GUI, I want to stop this main thread. After user make some choice and close GUI window, then, I want to go back to main thread. I use wait() method inside my class to stop main thread , but it does not work and it give me "IllegalMonitorStateException" error. I met same thing, when user close the GUI window and call method notifyAll(). How to stop main thread for a while and how to go back?? Thanks
    Gary

    Hi,
    you can create a boolean, and create a while loop, with a Thread.sleep(time); when you want to continue, you just have to change the state of your boolean. So you don't hava to exit the main. And you can't restart a run() in a thread. You can run it only once, so try to keep in your run() with an appropriate loop.
    Hope it helps.
    S�bastien

  • Hello.  I just started using my iMac today, and I've already had a pushy intrusion from something called mackeeper.  They wouldn't stop texting me and downloading and wanted to charge me.  One of the reasons I bought Apple was because we wouldn't get this

    I called Apple support and they were very helpful.  Just concerned that my experience on my very first day was mackeeper telling me my computer was at critical levels and I needed protection.....for $90. 
    Nearly everyone I talked to asking about Apple products said they'd never experienced any spam/spy/ or intrusion....not sure what you'd call this. 
    Should I be concerned?

    MacKeeper and similar utilities are just scams that happen to use very aggressive marketing techniques. You may find that visiting certain, generally unscrupulous websites will leave persistent cookies on your system that cause these intrusive advertisements to appear more often than otherwise. Your best defense is to ignore them, don't visit unscrupulous websites, and set Safari's Preferences to block cookies and other website data "from third parties and advertisers". Find that setting in the Security pane.
    While you're there click the button "Remove All Website Data...". That will remove all cookies already present and should stop the popups. You will need to sign in again to any website for which signing in is required. If you don't want to remove all cookies then click Details... and remove only zeobit.com. For all I know MacKeeper may use others that are more obscurely named.
    Also, consider blocking pop-up windows in the Privacy pane. They are commonly used for advertisements you probably don't want. If you ever encounter a popup indicating it detected registry errors, that your Mac is infected with some ick, or that you won some prize, it is 100% fraudulent. Ignore it.

  • I have an old iPhone 4 that finally stopped working.  I have an unlimited data plan and want to keep it.  When I called customer service, I was told like in the past that if you purchase the new phone at full price, you can keep your old plan.  However, a

    I have an old iPhone 4 that finally stopped working.  I have an unlimited data plan and want to keep it.  When I called customer service, I was told like in the past that if you purchase the new phone at full price, you can keep your old plan.  However, after some time on the phone i was told by the csr and supervisor that their system is not allowing them to complete the transaction without changing to a limited data plan.  I was told to try going to a store and buy the phone.  Same thing happened.  Has Verizon changed something and not told their employees?

    Seems like people having this problem are those coming from a phone that doesn't have a nano SIM card...so when Verizon issues them one they end up changing their plan. No clue why this keeps happening but stay on top of them. As long as you initiated the request for your plan to be reinstated within the 14 day time frame they should put it back. Interested in seeing how this plays out. There is still one phone in my house that hasn't been upgraded (an iPhone 4). I'm hoping when we do upgrade it at full retail they won't mess with her unlimited data plan

  • Hello, i've downloaded an app from The App Store on iTunes (Call of Duty) and when i wanted to sync it to my iPhone5 it stops in step 5 *detemining apps to sync* what should i do? i don't want to restore my iPhone.

    Hello, i've downloaded an app from The App Store on iTunes (Call of Duty) and when i wanted to sync it to my iPhone5 it stops in step 5 *detemining apps to sync* what should i do? i don't want to restore my iPhone.

    You cannot call anyone.  You contact them as everyone else does:  http://www.apple.com/support/itunes/contact/
    You delete the app as you do any other app.  Hold an icon until they wiggle.  Tap the "x".  This is covered in the manual.

  • How to dynamically call and order program modules

    Hey guys,
    I have ‘x’ pieces of code (x could be 10’s or 100’s of modules).
    I need to be able to dynamically call and run ‘y’ of them, but I need to be able to do it in parallel, and some of them might be in order.
    For instance ‘A’, ‘B’ and ‘C’ need to run in parallel,
    but 'D' needs data from 'A' and will run after 'A',
    and 'E' needs to run after ‘D’,
    and ‘F’ needs data from 'C' and will to run after ‘C’
    So I have two questions.
    How should I organize and order these dynamic calls?
    and What method should I use to pass data along from one VI to another?

    jcyth wrote:
    [...]But when you thought of Teststand, did you have a specific feature of Teststand that you thought it would be a viable solution?
    Since we will probably have the end user choose the modules required in this module operation, having a premade sequence editor might be nice
    My point mentioning TestStand is that my feeling tells me that you are going to re-implement some very basic functions which are already included in TestStand.
    To be honest: TestStand adds additional costs. You have to purchase licenses, you should get some training which takes time until getting payed off.
    But on the other hand: You also need time to implement and test your self-made approach. Also: Does this project grow in the future? Do you need additional features in the (near) future?
    Going into this will result in a break even in costs where you can say: if i take more time in my self-made approach, it is cheaper to go for TestStand right from the beginning.
    TestStand is designed to be VERY flexible. But you have to get familiar to this flexibiity in order to get where you want. Therefore, i recommend you to collect some information before making the decision. Maybe you want to invite some sales guy from NI in order to present TestStand to you....
    Norbert
    CEO: What exactly is stopping us from doing this?
    Expert: Geometry
    Marketing Manager: Just ignore it.

  • How do i set up time restrictions on a phone? I want to limit the late night phone calls coming in and going out for a family member.

    How can I set up time restrictions for a family member? I want to stop the late night calls incoming and outgoing during the week.

        Hi sk8ermommie - We certainly want you to be able to easily monitor and manage the usage on your account! We do offer the Family Base feature that allows you to setup time restrictions. If on a More Everything plan we are currently offering a free 3 month trial, after trial feature is only $5 per month. Visit http://www.vzw.com/familybase for more details.
    Thank you,
    YaleK_VZW
    Follow us on Twitter @VZWsupport

  • I downloaded iMesh and I can't stop it from automatically popping up each time I request a new tab. I have uninstalled the program, but I want to stop it from defaulting as a new tab. I tried uninstalling, but it is no longer installed as an add-on

    I downloaded iMesh and I can't stop it from automatically popping up each time I request a new tab. I have uninstalled the program, but I want to stop it from defaulting as a new tab. I tried uninstalling the add on and plug in, but it is no longer installed as an add-on or plug in. How do I get the "new tab" request to simply open with a blank address in the address box instead of www.imesh.com.

    Ok, I finally managed to get rid of it.
    First I did the thing with the about:config but I flitered for imesh instead and managed to reset two thing but when I got to the keyword.URL I got the same thing as lolbabe98 did with the "An attempt to change your search engine or homepage was blocked."
    Then I did a search on my C: drive for iMesh and discovered some things that hadn't been removed even though I had unistalled both the toolbar and the actual program. After that it worked fine and I now have a regular "untitled" tab when I open a new tab.
    One last thing, when I tried to remove some of the files there was one that said it was in use, it was called datamanagerUI or something rather. The only thing I had to do there was to open Task Manager and kill a process called DATAMN~1 and I was able to remove it. Hope this helps.

Maybe you are looking for

  • After partition using fdisk, i can not see the new device file (/dev/sdd1)

    I used fdisk -l to partition /dev/sdd, use the entire disk as partition 1. it looks successful: # fdisk -l /dev/sdd Disk /dev/sdd: 10.7 GB, 10737418240 bytes 64 heads, 32 sectors/track, 10240 cylinders Units = cylinders of 2048 * 512 = 1048576 bytes

  • Mac Mini Server with Leopard

    I installed a Mac Mini Server in my media room. Connected it on my Ethernet, where i also have two other mac mini's a Mac Book Pro throughout the house. They all do "see" and "talk" to each other, and share files, like they are supposed to do. The on

  • HT1391 cannot open itunes

    when i try to open itunes it comes up with a message saying "the iTunes Library.itl file cannot be found or created. The default location for this file is in the 'itunes' folder in the 'music' folder."

  • IFX transformation in ABAP

    Hello. Well, this message try to get any primary information about SAP ABAP Transformations. While I get some answers, I'll read about SAP Transformations with ABAP, but maybe my solution can be answer it by some of you, because is too easy than I'm

  • Special character u00A3 and u20AC sign issue in File adapter

    Hi Experts, Kindly help me out. I am using file adapter and File encoding as ISO-8859-1.It's converting the file data u20AC as " &amp#8364; " and  £ as " &amp#163; " Whether ISO-8859-1 supports all the special characters.or I need to use some other e