Two applications of CVI each calling another version of TestStand

We have a Test Manager software written in LabWindows CVI.

A version of the Test Manager wrote in a version more old of the CVI and calls TestStand 3.x.

A newer version was written in CVI 7.x and also calls TestStand 3.x.

The latest version of the Test Manager is written in the most recent CVI and the last TestStand.

We want to install and run the old versions and the new versions on the same PC.

Will this work?  How the old (and new) Test Manager will select the appropriate version of TestStand?

For example, we want to execute CVI 7.x and later with TestStand 3.x and with the latest version of TestStand.

I read the posts earlier to have several deployments of TestStand (or versions) on the same PC.  This case is not quite the same, given that the application calls TestStand and not the opposite.

Thank you

RayR

I don't know which posts, you reference, but they should apply to your situation. The editor interfaces and operator of sequence are not TestStand. They both call the TestStand engine. Because you can only have a single engine was active at a time, you will need to have your high-level program go to the correct. There are a few files of commands here that should help you. Of course, you can run your manager different test programs at the same time.

Tags: NI Software

Similar Questions

  • HotSync two different Palm trees that use another version of Palm Desktop

    What I need to know, is that I have a Palm III & a Palm Zire 31 the two that use a different version of Palm Destop can install both versions of Palm Desktop on one computer and then be able to hotsync the two devices. Or two of them will be hotsync with the same version of Palm Desktop.

    Palm Desktop 4.1.4e for Palm Zire 31

    Palm Desktop 4.1.4 for the Palm III

    Hello obsolete.

    I have not tried your specific combination of devices before, but I think it should work.  I install Palm Desktop 4.1.4 and then synchronize the Palm III first.  Once you know that the Palm III is synchronize normally, I would Setup then Palm Desktop 4.1.4e above 4.1.4 upgrade.  Then synchronize the Palm III to ensure that it always works.  If this is the case, then try to sync your Zire 31.

    Since you will be synchronizing two devices on the same computer, I recommend that each device has it's own unique HotSync ID to prevent things from going bad on you.

    Alan G

  • application by calling another application doesn't use does not States

    I have a project and in the two applications.

    1 - I have a main application, and he got a button that calls my other app, which is in the same project.

    2. I do not want States, by mixing the code too.

    3. is there a way to create a call to another application is similar to what is done in PopUpManager?

    TKS

    Must the called component be an Application. If this isn't the case, you can create a cutom component (which extends from any other Flex Application except container) that contains everything that you need and instantiate in your initial request on the click of the button.

    If you must have an Application, you can create a separate project for the second request and compile it to a SWF file. You can then load this SWF of the SWFLOADER Flex control on click of the button.

  • How can we operate two screen on vista - do not reproduce but to run applications separated on each screen-AT

    How can we operate two screen on vista - do not reproduce but to run applications separated on each screen-AT

    Choose the option 'Extended' instead of 'mirrored '.

    http://Windows.Microsoft.com/en-us/Windows-Vista/multiple-monitors-frequently-asked-questions

  • make an application call another

    I have two applications, suppose X and Y. Application there is need to enter to start a chain. I would like to invoke Y from X. What is the best way to do it? I would be grateful a point to the right direction.

    Thank you

    You can do the 'invisible' app, a "system module" (see the project properties in the JDE).

    You can launch another application using ApplicationManager and the handle of the module.

    See the API documentation for

    ApplicationManager

    ApplicationDescriptor

    CodeModuleManager

  • I use LR on my PC, Windows 8.0.  Recently encountered a problem where I can't access one of my LR catalogs.  The LR error message tells me that another application is using the file.  I have to close the "another version" of LR, then restart.

    I use LR 6 on my PC, Windows 8.0.  Recently encountered a problem where I can't access onof my LR catalogs.  The LR error message says that the book is opened in another application.  Close the "another version" of LR, then again to open the catalog.  I find it a different version of LR running on my PC.  ????

    In the same folder that your catalog file is a file whose name ends with .lock

    Delete this .lock file

    DO NOT REMOVE ANYTHING ELSE

  • How to call another application (compose e-mail)

    I want my application have menu to call the Messaging Application, as in the SMS and MMS application, there menu "compose Email".

    How to do this?

    Thanx

    The Javadoc:

    MessageArguments (String arg, String, object, String, String body)

    Creates a new instance of MessageArguments with the arguments provided

    so, something like:

    MessageArguments messageArgs = new MessageArguments(MessageArguments.ARG_NEW,"myContact","mySubject","myBody");
    
    Invoke.invokeApplication(Invoke.APP_TYPE_MESSAGES, mArgs);
    
  • Focus between two applications

    Hello

    I work with both applications at the same time, which is made with CVI and the other not (e.i. Explorer). The application made with CVI every 20 seconds displays a new Panel and take focus (hence the other app lose focus), but I would still keep the emphasis on the second request (Explorer). Is this possible?

    Thank you very much

    Daniele

    Danielle:

    Matteo has given you some useful links if you want to give your app focus.  But when I read your post, it looks like your application takes the focus and you don't want it.

    The attached sample project shows two ways to allow another application to keep focus when your application will normally consider.

    Both methods use the Windows SDK functions (a.k.a. Win32 API) to get or set the foreground window (the one with focus).  The Windows SDK is not installed by default with CVI.  It comes with the full package and the Suite OR developers, but not with the basic package.  If you have the complete package or suite, and you do not have the SDK installed, you just re-run the installation of the CVI and select only the SDK (or Win32 API).

    The basic idea behind the first method is that before you post your new Panel, you check to see which window is in the foreground by using GetForegroundWindow(), then your new display panel and then set previous window of the application in the foreground using SetForegroundWindow().  The downside of this method is that your new Panel has a quick flashing of focus before focus is returned to the other application.

    The second method checks if your app CVI is the foreground window before displaying the new window.  It does not display your new Panel if another application has the focus.  This way you don't get the blinks of update to your application CVI.  Depending on the purpose of your new Panel, you may have to display the new Panel when your application receives the focus instead to wait until 20 seconds to display.

    For demonstration purposes, this sample application appears again just the main draw instead of display a new Panel.  The two methods will be work the same way for a new Panel as well.

    Instructions for running the demo and see the two different methods are on the main Board.  Just build the application and run it.  I tested this example in CVI 6.0 and version 9.0.1.

    Having said all that, I have a question for you.   Why your application CVI shows a new sign every 20 seconds?  You can update an existing panel without using the DisplayPanel command and forcing the update to your application CVI.  Do you need a new Billboard?  And what happens after 20 seconds?  The first Panel again get hidden or destroyed?  Are another new panel displayed?

    There could be something even easier, you can do without one of these SDK, as do not use DisplayPanel if you need SetCtrlVal.  (But this model made for a writing exercise pleasure).

  • I try the installation key OEM Office or upgrade to another version of Vista

    Hi, I had the same problem here.

    until someone shows me at the door, shouting that I have tried the vista OEM key to install office or upgrade to another version of vista, here are the facts:

    -C' is my work laptop.
    -It was installed with a volume work XP pro license.
    -J' changed jobs, negotiated to keep my laptop in the process.
    -I'm legitimate, I don't want the volume from my previous job license.
    -I am reloading the preinstalled version of vista from the CD supplied with the notebook microsoft (not the CD before installing, I wanted a windows clean and neat)
    -L' label on the back of the PC say "vista home premium OEMAct".
    -I am running windows vista Home premium
    -J' I updated my bios to the latest version
    -vista will not activate automatically.
    -J' tried to call microsoft for manual activation. the IDS are recognized (if you try to enter a wrong number, it is said that there is a mistake), but when I hit "next" after having typed the ID told me on the phone, I get an error indicating that the code is wrong.

    a now I get the Activation Assistant 0xC004E002 error when I try to run it.

    I don't see what I did wrong... someone has a lead what to do next, other than reinstalling windows?
    I don't want to bother to reinstall all drivers and applications (openoffice, java, firefox, xnview, avira antivir...) that I just installed.
    And I want a working solution, as I am not really convinced that reinstall windows don't lead me to the same problem on new.

    Thanks in advance.

    Best regards
    hateshinai.

    Post edited by: hateshinai

    Hello

    First of all-> you have a Toshiba laptop?
    If so,-> to the Vista preinstalled on your laptop is already activated!

    The key at the bottom of the device belongs to the OEM of Vista version and it is just a confirmation that you are using a legal Vista operating system.
    The key cannot be used with MS Office and other versions of Vista!

    If you want to upgrade the Vista then you will probably get a new key from Microsoft.

  • Variables in SubVIs reset on each call to MCB2400 in LV2009 ARM embedded

    Hello

    I have a problem with variables in SubVIs. If I put them on my MCB2400 (ARM) they reset at each call. So it s impossible to build a counter in a Subvi. If I run the same VI on my PC, everything works fine. Just on the ARM it doesn´t work more.

    In my example (see attachment) to build two counters. A hat of the Variable to increment in the mainVI and the other in the Sub - VI. And that, in the mainVI the other not work (on the MCB2400). But if I run the same on the PC, both work without any problem.

    Anyone has an idea where is the mistake of m or is this a bug in the LV2009 ARM embedded?

    Bye & thanks

    Amin

    This isn't a bug.
    When it comes to read the local variable program gets a value of the indicator that is in your PC, not on the target. Control/indicators are not updated continuously, but with the specified period in "Configure the target" of dialogue. In your application you do not give a chance for the indicator update until the next iteration.
    However, it is not recommended to use local variables. You can use something like this:

    As an alternative, you can use 1 iteration loops store this local in a shift register.

  • How build/package two applications of a project?

    Dear all, I have a project of cascades, and I would build two different versions of the app:

    a. a normal version with advanced features disabled, which will be free in BBWorld;

    b. Pro version has with all the advanced features, which will be non-free in BBWorld;

    The app both are based on the same base code, but with a condition variable to enable/disable features. For my permanent title, there are two things to do:

    1. the two applications must have package different name (id) in bar - descripter.xml

    2. the two apps must be built with the settings of different environment variables.

    # 1, I have no idea; # 2, I noticed in the setting of property of project-> build c / c ++-> environment, you can add the new variable, but I don't know how to use it (I tried #ifdef in the code, doesn't seem to work).

    I think it's a good case for many other applications, share a few experiences on how to handle everything?

    Thank you

    Dong

    If you really need to both projects and are not in-app-payment

    I do these things using different branches in Git

    There is a main direction and also one or more custom industries

    then I use cherry-picking or other techniques to have customized branches needed to build specific file bar

    to go this way, you should know what happens behind the scenes of Git and work also disciplined

    Another way would be to put your common code in a library and use this library of two applications

    copy/paste should never be a solution, because it works only after all you are not able to maintain your applications

  • Navigate between two applications in the same workspace without sing again

    Hi all

    Version 4.1.0.00.32 of apex. Oracle DB version 10.2.0.3.

    I have two applications built in the same workspace, if a user can log on to two applications with the same user name and password. I'm looking to put a link on one of the applications to direct the user to the other app. Is there a way to avoid name of user and password to re-enter once the user clicks on the link? I noticed that the session ID is application + user. Not by the workspace + user.

    Thank you
    Sinan

    Change the properties of authentication scheme in both applications and set the name of the Cookie to be the same.

    As long as the session ID is maintained in the links, you'll be fine.

    Each application will allow authentication in your applications, but only after the relevant authentication will trigger.

    Scott

  • comparison and fusion between two applications

    Hello
    We run APEX 3.1.1. I have an application (say 101) production that has about 80 pages. I started a project to create more pages and references of web service and other things. It was supposed to be done in a month. so, I cloned application 101 to 102 and began with my changes in 102. at the same time any request for a quick change of the production team is a 101 application, so that the results are visible instantly.

    now I have finished my work at 102. and 102 is ready to be the application for production. My problem now is, how do I get minor changes, I did several times in app 101 to 102?

    I tried to export the two applications and sqls against them, but these sqls are very large and there is a margin of error as you more the text of 101 to 102. There must be a cleaner way to do what I'm not aware of.

    Any help is appreciated.

    Abdul-

    I would say that you need to implement the changes manually. I understand the question:

    You have two applications: App A & App B

    Both applications are in the same space and work under the same version of the APEX. You did changes in both A & B (change a region in the App, change the text of a label to the App B)?

    You will probably have to open each application separately and just start their merger manually. Best suggestion, the application you have worked last, copy your starting point and open the other application and start to copy songs on...

    Thank you

    Tony Miller
    Webster, TX

    There are two types of pedestrians - the living and the dead.

  • When calling another country gives the time in this country?

    When calling another country, Skype tell you the time in the country you call?

    Hello and welcome to the Skype community.

    N ° as currently configured the system does not support this facility.

    TIME ZONE - US EAST. LOCATION - PHILADELPHIA, PA, USA.

    I recommend that you always run the latest version of Skype: Windows & Mac

    If my advice helped to solve your problem, please mark it as a solution to help others.
    Please note that I usually do not respond to unsolicited private Messages. Thank you.

  • The customization cannot be installed because another version is currently installed and cannot be upgraded from this location. __

    Name:

    From: http://localhost/TestUpdatedVersion/TestUpdatedVersion.vsto

    The customization cannot be installed because another version is currently installed and cannot be upgraded from this location. To install this version of the customization, first use Add / Remove programs to uninstall this program: TestUpdatedVersion. Then install the new customization from the following location: http://localhost/TestUpdatedVersion/TestUpdatedVersion.vsto

    The exception text *.

    Microsoft.VisualStudio.Tools.Applications.Deployment.AddInAlreadyInstalledException: The customization cannot be installed because another version is currently installed and cannot be upgraded from this location. To install this version of the customization, first use Add / Remove programs to uninstall this program: TestUpdatedVersion. Then install the new customization from the following location: http://localhost/TestUpdatedVersion/TestUpdatedVersion.vsto

    at Microsoft.VisualStudio.Tools.Applications.Deployment.ClickOnceAddInDeploymentManager.VerifySolutionCodebaseIsUnchanged (String subscriptionId, Uri uri, Boolean previouslyInstalled)

    at Microsoft.VisualStudio.Tools.Applications.Deployment.ClickOnceAddInDeploymentManager.InstallAddIn)

    You can try to remove a registry key located at the:

    HKEY_CURRENT_USER\Software\Microsoft\VSTA\Solutions\ {GUID}
    The {GUID} value will be different in your environment.
    Make sure that you remove the right key.  Confirm by checking the DWORD value "Url" to the key.
    Restart Excel and you should be good to go.

    http://www.charliedigital.com

Maybe you are looking for

  • Don't flag of 1720 (Vista) no start

    When he made a sound of crackling light and set off by main switch power, was online. Will not re-start not and appears to be dead. Tested the PSU jumping green and black and power supply power. Seeing no light on the motherboard, although I don't kn

  • Missing driver - port Serial PCI?

    I'm missing a driver, an exclamation point next to "Serial Port PCI" Device Manager. I tried update from HP.com chipset, but this does not solve my problem. Cold you help me to find the driver I need? Hardware ID: PCI\VEN_8086 & DEV_297B & SUBSYS_281

  • Installed a new program. Cannot connect past welcome screen. Black screen of death. Connected with Safe Mode.

    After you install the program for my Logitech Quickcam 4000 computer asked me to restart. When I did I went to the login screen I have entered my password, but the only thing that's happened is he went to the 'Welcome' screen and the circle just kept

  • error when you try to connect to the internet via a modem usb - 6 error: the handle is invalid

    error 6: the handle is invalid - I see this error message when you try to connect to internet via usb modem I'm using windows Vista Home Basic and attempts to connect to the internet via a usb Huawei modem. but when connect this device on windows xp

  • Version of vs WCS WLC

    Hi guys,. can I use the version 5.2.178 on my controller and 4.2.110 on my wcs? Best: WLC and WCS to run the same major version (4.2 and 4.2,5.2 and 5.2) or are the wlc and wcs not linked version? (5.2 and 4.2) THX...