Open another vi in the main vi

Hi,
This issue have always be difficult to me undertant, hopely someone can explain this to me.
I have the main Vi which have device controlling, measuring and others tasks. Now i have tryid to open other window (vi) with this (button and event structure http://decibel.ni.com/content/docs/DOC-3413). OK vi opens, but everything stops. The main window stop "runnin" and new window's controls are "not in use". I want to run and control both windows.
Thx again
-Aa-

The example is basically how I do it, but I put in a case to skip launching the Vi if it is already running.
Attachments:
run.png ‏34 KB

Similar Messages

  • I can't open an update for Acrobat 9 pro I get asked to open another prog from the suite but when Io

    I can't open an update for Acrobat 9 pro I get asked to open another prog from the suite but when I do Acrobat just shuts down,help !!
    And I can't get back to the older version of Acrobat

    See this User Tip by turingtest2
    https://discussions.apple.com/docs/DOC-6562
    JimmieJag wrote:
    2. If I reinstall it, will I lose my store credit and non-iTunes songs?
    Nothing should be lost... However... it is both Prudent and Recommended that a backup should have been created and maintained.

  • Why can't I open another tab in the current window anymore?

    I have not had an issue with this problem until today. I have had my laptop since May 2010 and I have been using firefox the whole time. Today, my roommate used my computer, but used internet explorer. Since then, I have not been able to open another tab on the current page.

    Perfect solution. The resolution was not letting me get past the user agreement and into the iPod settings.
    Really appreciate your taking time to respond. Thank you!

  • How to go back to the same directory after opening one bookmark instead of having to browse the directory tree again to open another bookmark from the same dir

    I regularly need to check several bookmarks that are stored in the same directory, which usually is a couple of clicks from the main bookmarks menu.
    When I select a bookmark in the tree that I created to organize my bookmarks and it does not give met the web-page/information I was looking for, I want to try another bookmarked web-page in the same directory.
    So I have to click my way through the whole tree again.
    I would highly appreciate if it could be made possible that hovering over the bookmarks menu automatically will unfold the whole tree to the directory where I have been last. That would be a real time saver.

    Try using the Bookmarks Sidebar. '''{Ctrl + B}''' to open and close it. It will stay open until you close it, and when you do close it, the scroll position will remain until you close Firefox.

  • How to open another iView in the same window

    Hallo,
    I user following code for opening iView:
    String iView = "http://server/irj/portal?NavigationTarget=ROLES://portal_content/example";
              this.getForm().addRawText("<SCRIPT>\n");
              this.getForm().addRawText("EPCM.doNavigate('" + iView + "',"
                             + "'1',"
                             + "'toolbar,menubar,resizable,scrollbars',"
                             + "'',"
                             + "'',"
                             + "'',"
                             + "''"
                             +
                        //","+
                        ");\n");
              this.getForm().addRawText("</SCRIPT>");
    ... but this open iView in new window. I'd like to open iView in the same window as the primary iView.
    Best Regards,
    Josef Motl

    Hello all:
    And... How could I show some i-views with another contents in the same page, like this?
    photo
    IVIEW
    photo
    IVIEW
    Thanks,
    Alejandro.
    P.D.: Excuse my poor English.

  • Can we call another dashboard within the main dashboard?

    Hi Xcelsius Gurus,
    Currently I have created 4 dashboards out of total 10 dashboards using "Dynamic Visibility" in one single SWF file.  As each dashboard has more KPIs in it, it has performance issues.  We have still 6 dashboards to go.
    Hence to get better performance, I am planning to break this SWF into multiple SWFs.  Each sub-dashboard will have "BACK" button.  Hence I'll have one main dashboard, where on click it will open the respective dashboard and when clicked on BACK button the main dashboard will be visible.
    Will this be possible?  If yes, how to achieve the same?
    Your early reply is much appreciated!
    Regards,
    Rashmi

    Hi again Rashmi,
    do you have BOE intsalled? If yes, then you can use the OpenDocument command for that:
    [http://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/800f7400-bf3e-2b10-fa81-c6c74f457ab4|http://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/800f7400-bf3e-2b10-fa81-c6c74f457ab4]
    If not, then I would recommend you to build the "main dashboard" as a html navigation, each dashboard can be loaded in other frame.
    You can also try to use the URL Button Component, this will open a specified Link, including swf's files.
    Regards
    Victor
    Edited by: Victor Gabriel Saiz Castillo on Dec 22, 2009 8:16 PM

  • Cauld i open a result set and open another before ending the first?

    in this code  i have an opened ResultSet and i want another one to b opened durring the action of the first  ..............can i do such a thing without opening a new connection? :_*<br /</strong>  <table width="100%" border="1">
    <%
    while(boolVar3)
    %> <tr>
    <td><%=res3.getString("patient_id")%></td>
    <td><%=res3.getString("patient_name")%></td>
    <td><%=res3.getString("patient_address")%></td>
    <td><%=res3.getString("patient_tel")%></td>
    <td><%=res3.getString("patient_dob")%></td>
    <td><%=res3.getString("patient_email")%> </td>
    <%
    user_id= res3.getInt("username_id");
    sataus_id=res3.getInt("patient_status_id");
    } res9=state.executeQuery("select * from patient_data join username on patient_data.username_id=username.username_id where patient_data.username_id='"+user_id+"'");
    if(res9.next())
    %>
    <td><%=res9.getString("username")%></td>
    <td><%=res9.getString("password")%>
    <%}
    res10=state.executeQuery("select * from patient_data join status_patient on patient_data.patient_status_id=status_patient.status_id where patient_data.patient_status_id='"+sataus_id+"'");
    if(res10.next())
    {%></td><td>
    <%=res10.getString("status_name")%></td></tr><%}} %>
    </table>

    yes u r right they r collection.
    try this java code pattern and reply.
    public class classname{
    ArrayList test1 = new ArrayList();
    ArrayList test2 = new ArrayList();
    String rsValue = "";
    test1.clear();
    ResultSet rs1 = st.executeQuery('....");
    while(rs1.next())
    rsValue = rs1.getString(1);
    test1.add(rsValue);
    ResultSet rs2 = st.executeQuery('....");
    while(rs2.next())
    rsValue = rs2.getString(1);
    test2.add(rsValue);
    }//end of class
    You shud know abt collections also mainly util package that helps in more ways try learning that

  • I always have many tabs open in FF, and rely on it restoring them each time I close/open it again. Sometimes I'll have a second window open and will close the main window first, losing a record of tabs I had open. Is there a way around this?

    Seems like when FF restores a session, it restores the session of the last window open. If you use tabs as a way of keeping a list of things to do or look at, you have to be careful if you have a second window open to close the second window before your main one, or you will lose your list. I'm absent minded though and do this all the time. The only way to prevent this is bookmark all my tabs once a day, but I tend to forget to do even that. Any workaround for this?

    When you re-open Firefox and choose Restore Session, by default it picks up your most-recently-open window, and the other windows should then show up in Recently Closed Windows.
    The Firefox add-on Session Manager lets you manage how many closed windows and closed tabs are saved, in case it's not enough.

  • Open another video with the help of a button

    Hello,
    With a button field, I'd like to forward the user to another
    video. Now, the current video has been opened with the help of some
    JavaScript to deactivate the browser's toolbars, to set the
    browser's size, etc. Now, How can I accomplish, once the user
    clicks on a button in the Captivate video, that this video opens in
    a browser window similar to the current one (i.e without browser's
    toolbars, a particular browser's size, etc)?
    Do I have to enter "my* Javascript code into Captivate?
    Acutally, I see such an option there. However, on that page to
    start the video, we have Javascriptings in the header as well as
    the body copy...
    Your help is gladly appreciated! What do I have to do?
    Thanks in advance.
    Stefan

    Hi Larry, :)
    Thanks much for your help. Unfortunately, it doesn't seem to
    work.
    While watching offline, I get a Flash security warning (kind
    of that this swf file tries to communicate with itself, which is
    not permitted right now, etc). I then tried to update the Flash
    security preferences -- without success.
    While watching online, nothing happens at all. I click on the
    button but no window whatsoever will be opened.
    On the actual first page (let's call it "bounce page" -- it
    is where we start each video demo) with all the Javascript, we use
    the onClick event, followed by some sort of coding (like you showed
    above).
    So, there must be a way to make this work inside a Captivate
    video, too.
    And it would be so great to make it work both online and
    offline!
    Help, please!
    Or anybody else knowing a solution?
    Sincerely,
    Stefan

  • When I try and open another link from the web page it won't open

    Open a web site, click on a link to another site or page and it flashes"loading" on tab, but doesn't load the page

    removed firefox and installed V.10. Back to normal! Interestingly did not have problemm on Blackberry so not sure where the problem was!!!!!!!!!

  • How to open another page on the same document in microsoft office 2008

    Hi, can you tell me how to open a page in microsoft office 2008, thanks

    Insert -> Page -> Page Break

  • When I have minimized additional windows and open another new window, the previously minimized windows show up underneath the new one, and I have to minimize them all again. This is quite annoying, how do you make it stop?

    This has only been happening since upgrading to Firefox 4.0.

    This issue can be caused by the ASK.com Toolbar.
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • After using a certain payed wifi, now always I open another wifi feature, the old window for the paying wifi ask for the user name ans password. I'd already delete the old wifi conection, clean the cookies, restart laptop, clean the historic, etc etc

    This happens with Firefox, or even IE...

    It shows Peter's doing its jobs properly.
    Anyway there is no more communication from Sony since awihle. If you can have any news.
    Anyway good job Zero!

  • How do I enable background audio? I lose my audio if I open another music app! The latest upgrade says it supports background  audio?

    How do I enable background audio? Audio shuts off when I open another app! The new upgrade says it supports background audio?

    I upgraded to ios6.1 and the newest garage band last night! I thought I would now be able to run background audio like it says. I can't find the option anywhere ? I wish I could send a screen shot of my iPod .

  • Opening multiple instances of the same vi

    Hi,
    I am having trouble opening multiple instances of the same vi.
    This vi that I am trying to create can be used like a message display window to display numbers, strings etc (just like labVIEW's display message control except that this vi will update the displayed controls every scan). So for example, I will like to have a subvi, lets call it popup.vi, where I wire in three inputs from my main vi (2 strings and 1 number). Now in my main.vi I have 2 numeric controls Num1 and Num2 with their KeyFocus property nodes.
    The intention is that when I select Num1 or Num2 numeric control with my mouse the KeyFocus boolean becomes true and the popup.vi logic kicks in. Meaning that the popup.vi runs and opens its front pane
    l displaying the two strings and one numeric value from the main.vi.
    The problem arises when I want to open and run multiple instances of the popup.vi.
    So when I click on Num1 with my mouse I want the popup.vi to open its front panel with a set of strings and number displayed. At the same time I would want to click on Num2 control and open another instance of the popup.vi with another set of strings and numeric value.
    Also, I saved the popup.vi as popup.vit but for some reason vi server will not open the popup.vit. I get a message that popup.vit is already in memory - cannot load.
    I have attached a sample of the main.vi and popup.vi program.
    Please let me know if you need further clarifications.
    I appreciate your help in this matter.
    Thanks
    Nish
    Attachments:
    popupVI.zip ‏37 KB

    You have to clone the VI. You say you have tried to use the .vit way of cloning...but in the example there is no use of VIT and the VI is called statically. If you want to open multiple instances of the same VI and the VI has a user interface (or needs to be a unique instance of the VI every time even though it's called the same place in the diagram, not the case here though) you need to do it dynamically, i.e. with an invoke node.
    There is actually a problem doing just that, it causes a memory leak...but that won't be a problem unless the VI is called frequently / the software will be running over very long periods of time. You can see an example of it here (attached to my reply to the question):
    http://exchange.ni.com/servlet/ProcessRequest?RHIVEID=101&
    RPAGEID=135&HOID=506500000008000000A07D0000&UCATEGORY_0=_49_%24_6_&UCATEGORY_S=0&USEARCHCONTEXT_QUESTION_0=VI+cloning&USEARCHCONTEXT_QUESTION_S=0
    About the memory leak problem:
    http://exchange.ni.com/servlet/ProcessRequest?RHIVEID=101&RPAGEID=135&HOID=506500000008000000B7A40000&UCATEGORY_0=_49_%24_6_&UCATEGORY_S=0&USEARCHCONTEXT_QUESTION_0=VI+cloning&USEARCHCONTEXT_QUESTION_S=0
    MTO

Maybe you are looking for

  • Can someone Please help m

    I ordered a soundblaster x-fi elite pro from creatives web site almost /2 week ago, and I still haven?t heard anything. The only response I got from them was an email I got the day after I ordered it. In the email they requested me to send a copy of

  • Why the White Lines around imported Photoshop Images

    Working in CS6, importing native Photoshop images into an Illustrator gradient.  Certain imported Photoshop images, with transparent background, produce white lines bordering the images.   The white lines stand out against the AI gradient.  The white

  • How to set password on email body in custom Email Template

    Hy, I have a Email Template customized in Email Definition>Design Console. I need send this 'Email Template' with the password user, but I don't know how to set the variable 'password' in the body of email. I searched in Varables>Targets>Variables, b

  • HT5621 How can I scan for viruses on my Mac?

    How can I scan for viruses on my Mac desktop?

  • Final Cut Pro timeline items vanish. OS problem?

    Something strange happening when I use Final Cut Pro. I've looked for help in the Final Cut Pro forums but it's looking to be an OS problem. Look at http://www.flickr.com/photos/46227266@N00/460849229/ to see what I'm talking about. When I click on i