Make pop up window

Hi
For my vi I need to have a button that activates a pop-up window which contain text or graph with a close button.would u please help me how can I do this in Labview
Solved!
Go to Solution.

Hi Trinity32244,
If I understood you correctly, you want to run two VIs simultaneously and also you want one of the VIs to be called from the other. If you follow my example and do this it won't work because, if you place the subVI which runs continuously in a While loop and then call it, the while loop wont get into its next itration untill the SubVI is closed. So its not that the main VI while loop is stopping. Its just that its waiting for the subVI to stop to make its next itration.
To accomplish what you want, I don't think putting the subVI in the same While loop would help. You can make two while loops running in parallel, put all your code into one while loop and the subVI in the other while loop and then call the subVI from the main while loop. In this case both will run simultaneously. I have attached an example which shows how to do it. Download both and run a.vi. Not the best example, but still, I think it will help you.
Regards,
Nitzz
(Kudos are always Welcome) 
Attachments:
b.vi ‏7 KB
a.vi ‏11 KB

Similar Messages

  • Hello, I want to make DPS magazin for IOS and Android with a lot of text footnotes. There is about 200 footnotes per article. The idea is to make pop-up windows like in EPUB 3.0. Please help.

    Hello, I want to make DPS magazin for IOS and Android with a lot of text footnotes. There is about 200 footnotes per article. The idea is to make pop-up windows like in EPUB 3.0. Please help., Hello, I want to make DPS magazin for IOS and Android with a lot of text footnotes. There is about 200 footnotes per article. The idea is to make pop-up windows like in EPUB 3.0. Please help.

    Remember you can only build an iPad app using your Single Edition solution (which is included in your CC membership). So you'd need a Pro or Enterprise version of DPS to be able to create the Android version.
    You can create pop-ups in InDesign using the slideshow options and a multi-state object. But it's all manual labour so you'll spend a lot of time on this, also depending on the layout of your design.

  • How to I make pop up windows go back to the left side of the screen when they are moving to the right?

    Whenever I click on a link, a new window pops up. That's good, that's what I wanted. They've always opened on the left side of the screen. However, they are now opening in the middle of the screen. This has happened before and the screen eventually opened completely on the right. Last time this happened, I ended up having to delete something. I don't remember what, but it solved the issue. Please help!

    You can check for problems caused by a corrupted localstore.rdf file.
    *http://kb.mozillazine.org/Corrupt_localstore.rdf
    You can also try to emove the Firefox plist file (org.mozilla.firefox.plist).
    *http://www.macfixit.com/article.php?story=20060606082246983 How .plist files become corrupt and troubleshooting the results
    Go to "~/Library/Preferences" and remove the plist file for Firefox (org.mozilla.firefox.plist)

  • Opening new tabs makes the browser window wider

    when opening a new tab in safari
    it makes the browser window bigger (at the bottom)
    but not only at the bottom actually
    after a few close-open's it also starts growing at the top
    and for me it's unacceptable cause there are folders that i need fulltime access to (at the top)
    is there a way (a script) to prevent safari "grow" and make the browser window bigger in a while ?
    i don't really know why is it happening because if you press cmd+t it opens a new tab and the browser window kinda slides bigger at the bottom but then if you press cmd+w it does the opposite and the browser window stays the same size after those actions
    i can't follow but after some time it starts to be bigger not only at the bottom
    it grows til the dock and then starts growing at the top
    is there a way to prevent that ?
    i mean take opera for example. it always stays the same size and new opened tabs take the "inside space" if you know what i mean. the browser window doesn't get bigger. there is space allocated especially for tabs
    i like safari but it is very important for me that it stays the same size all the time
    i have all windows and folders situated exactly where i want them and if something moves and covers other items, it gets uncomfortable
    thank you

    nimionsergei wrote:
    (i have 'secrets' app installed and it makes pop up windows open in the same browser window, so it might be becasue of that)
    Yes, it sounds like this is the cause.
    Some pop-up window code forces the new window to be a certain size. Since it's intended to open in a new window, that normally wouldn't cause problems. But you're forcing the pop-up to open as a new tab in the current window, which causes the current window to be resized to that new page's defined size.

  • When I open firefox, a pop up window asks "do you want to allow the following program to make changes to this computer? How can I get rid of this pop-up window ?

    Every time I open the browser, a pop-up window asks "Do you want the following program to make changes to this computer?"
    It is unnecessary and annoying to have to click "yes" each time.
    How can I get this pop-up window to stop?

    Thanks for the help I'll keep the info just in case - but I got so frustrated that I just deleted the program and then re downloaded the current version now everything works fine.

  • I have placed a check mark in the Block Pop-Up Windows box and when I restart Firefox, the box is empty and I begin receiving Pop-Up's again. What do I have to do to make the check-mark permanent?

    I have placed a check mark in the Block Pop-Up Windows box but when I restart Firefox, the box is empty and I begin receiving Pop-Up's again. What do I have to do to make the check-mark permanent?
    == This happened ==
    Every time Firefox opened

    See this:
    http://kb.mozillazine.org/Popups_not_blocked#Other_software_disables_the_popup_blocker

  • I get an error stating cc cookies dir: cannot make folder / cookies: Permission denied (error 13) when I attempted to download the creative cloud installer on my Mac. Can anyone help with similar pop up window?

    I get an error stating cc cookies dir: cannot make folder / cookies: Permission denied (error 13) when I attempted to download the creative cloud installer on my Mac. Can anyone help with similar pop up window?  I'm trying to get a trial version of CS5. 

    You do not need to involve Creative Cloud to install/try the trial version of CS5...
    You can download the trial version of the software thru the page linked below and then use your current serial number to activate it.
    Be sure to follow the steps outlined in the Note: Very Important Instructions section on the download pages at this site and have cookies enabled in your browser or else the download will not work properly.
    CS5: http://prodesigntools.com/all-adobe-cs5-direct-download-links.html

  • How to make a pop up window resizeable in ONLY ONE direction

    hi i have to open a pop up window whose horizontal resizeable option is to be disabled and ONLY the vertical resizeable option should be available. i browsed for a code but its not working properly.
    ====================================
    <html>
    <head>
    <title>fix horizontal</title>
    <script language="JavaScript">
    var fixedWidth;
    function getH() {
    if (document.body && document.body.clientWidth)
    fixedWidth = document.body.clientWidth;
    else if (window.outerWidth)
    fixedWidth = window.outerWidth;
    function resize() {
    if (document.body && document.body.clientWidth)
    document.body.clientWidth = fixedWidth;
    else if (window.outerWidth)
    window.outerWidth = fixedWidth;
    </script>
    </head>
    <body onLoad="getH()" onResize="resize()">
    ...<Body Contents>
    </body>
    </html>
    ============================================
    The problem with this code is that the
    document.body.clientWidth = fixedWidth;
    line shows an error saying that "Object doesn't support this action"
    can anyone help me out with this?

    Just so nobody else misses it...
        | | __ ___   ____ _  | |_____
    _  | |/ _` \ \ / / _` | | |_____|
    | |_| | (_| |\ V / (_| | |_|_____|
    \___/ \__,_| \_/ \__,_| (_)
        | | __ ___   ____ _ ___  ___ _ __(_)_ __ | |_
    _  | |/ _` \ \ / / _` / __|/ __| '__| | '_ \| __|
    | |_| | (_| |\ V / (_| \__ \ (__| |  | | |_) | |_
    \___/ \__,_| \_/ \__,_|___/\___|_|  |_| .__/ \__|
                                           |_|wishful thinking, I suppose... (no offense to the OP, but we get this a lot).

  • How do I make the OAC5 window for barcode pop up for transaction KO01?

    The user will use transaction KO01 (Internal Order). For barcoding purposes they should be getting a pop up window on saving the transaction. I believe an entry in transaction OAC5 should bring up the window. They enter the barcode which will be used for scanning later. This works for other transactions. I have also entered the right object type BUS2075 for internal order. I have no idea on why the pop up window on saving does not appear.

    I looked at the notes as well as the configuration for Controlling for any barcode input and did not find anything. On save of KO01 (Internal Order), I expected a barcode dialog box to popup for entering a barcode. On debugging the program, I could not find any call to the barcode popup dialog box? I have entered a row in OAC5 in order to bring up the dialog box. But, it still does not bring that dialog box.
    Regards
    Ram

  • ACROBAT XI Pro -EDIT TOOL SET  - POP-UP WINDOW IS TOO LARGE

    Good Day -
    I've been experiencing very nagging problem since installing recent Acrobat Xi Pro uodate (on windows 7 system):
    Specifically - I cannot edit/change the TOOL SET to include needed TOOLS (i.e., that were all previously in my Tool set) as the EDIT TOOL SET WINDOW (i.e., pop-up
    window) is TOO LARGE and does not allow scrolling/ or moving down to SAVE  any tool sets and or tool set changes. Very frustrating as all attempts (and recommendations from reviews/support) for decreasing the size of EDIT TOOL SET WINDOW (popup) in order to save (i.e. include ANY) tools have been unsuccessful.  So for past week I've been unable to include/use any TOOLS for working in (i.e., editing/commenting etc) pdf's.  Has anyone else experienced this problem?  Would greatly appreciate any / all steps & recommendations for fixing.
    Thank-you!

    First, make sure you are on the latest update 11.0.09. Help->check for updates should get you there.
    If check for updates says that you have the latest, see if the setting: Edit->Settings->General->Basic Tools->Scale for screen resolution and try various options (you'll have to restart Acrobat with each selection)

  • TS1741 I am having difficulty connecting my Remote App on iPad to iTunes. It used to work fine, but with latest iTunes and latest Remote, I can't get it to work. iTunes should open a 'pop up' window to add 4 digit code, but nothing happens. Any clues plea

    Would appreciate in connecting Remote App on iPad to iTunes. It used to work find, before iTunes 11.0 - but now pop up window to input  4 digit code does not appear. Any ideas how to prompt window to open on iMac? Remote App works OK, but says that Home Sharing is not Turned On, although it is. Both devices are logged into my profile account.

    You no longer need the 4 digit code in iTunes 11.
    iTunes (10.0.1 or later)
    Open iTunes on your Mac or PC.
    iTunes 11 or newer: Turn on Home Sharing in iTunes by going to File > Home Sharing> Turn on Home Sharing.
    iTunes 10.7 or older: Turn on Home Sharing in iTunes by going to Advanced > Turn on Home Sharing.
    Connect iPhone, iPad or iPod touch to a Wi-Fi network that is connected to the local network that your Mac or PC is also connected to.
    Open the Remote app (software version 2.0 or later) on your mobile device.
    Turn on Home Sharing in the Remote Settings screen. Make sure to sign into the same Home Sharing account you used to sign in to from iTunes on your computer.
    Once Home sharing is enabled for both your computer and your mobile device, Remote app will be be able to view and control audio and video playback in your iTunes library.
    http://support.apple.com/kb/ht1947

  • I am unable to save plug-in gadgets in Blogger because I get a Javascript:void(0) message on pop-up window. Pop-up blocker is disabled, cache cleared. Help?

    I am trying to add a plug-in gadget to my blogger blog. They use a pop-up window to configure the gadget and then a save button. When I am ready to save the plug-in I see a tiny message in the lower left of the pop-up window which says " Javascript:void(0)". I click "save" but the operation is not fully completed. Here is the strange part. The plug in does appear on my blog but I cannot edit it from the blog. When it was first installed, I could edit the plug-in but the changes would not be saved. Now I cannot edit as no editing buttons appear.
    I have cleared my cache, have exempted the Blogger site from my pop-up blocker. I have rebooted. My Firefox plug-ins are all up to date. I have contacted the support for the company that makes the plug-in, they can't fix it. I tried to contact Google but that help pop-up box also did not work properly as it only allows me to sign in but then nothing more happens.
    I don't want to have to refresh Firefox unless I have to... rebuilding what I have is going to take a lot of time.

    Hi Winnie
    Unfortunately I have been sick and did not read the message before. I apologize.
    I have not received help beyond what is on the page. But when I get I tell you.
    I hope you can get answers. If you receive, I ask that you share with me.
    thank you very much
    best regards
    AC
    Date: Mon, 27 Feb 2012 09:33:10 -0700
    From: [email protected]
    To: [email protected]
    Subject: Pop up Window before saving remembering the need (forcing) to fill required fields in a form
        Re: Pop up Window before saving remembering the need (forcing) to fill required fields in a form
        created by Win_Form in Forms - View the full discussion
    Hi ACI wonder if you can share any responses on to your question above?I too have never used a script but, I have the same problems as you in regards to building a form. And wants to have the same 'protection' and message reminders for the end users. Any information, including a script and/or a contact email of experts you can share with me will help tremendously. Thank you so much in advance. Winnie
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/4232307#4232307
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/4232307#4232307. In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Forms by email or at Adobe Forums
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • How Stop Pop-Up Window: Allow Fullscreen With Keyboard Controls?

    How can I cause the cessation of the pop-up window that asks me, "Allow fullscreen with keyboard controls?" 
    In the last month or two (January- February of 2013), this black, semi-transparent pop-up has appeared every time I go to full screen in the game Battle Pirates on facebook.
    After numerous iterations, this confirmation request has become completely unneccessary and nothing more than an unwelcome annoyance.

    Tom,
    Moderators have the authority and privilege to mark answers as correct, in addition to the original posters. ANY moderator here could have marked it that way.
    The Bug report/Feature Request link is not a "vote" page per say, but a place to submit a request for a feature you'd like to see added or dropped from Flash Player. It's the best way to voice a concern or "wish" for a feature, since the development team reads the reports/requests. Management who'd make the decision to add or remove something won't read about it here. They WILL hear about it from development.

  • I cant install an update to Firefox and cant remove the old version because a "Setup" pop up window "Your computer must be restarted to complete a previous upgrade of Firefox. Do you want to reboot now?" appears, reboots change nothing. What should I do?

    A friend said she downloaded an update to Firefox (a version of 6, I believe) but didn't install the update, but the desktop icon was gone. The only way to launch Firefox was from the Programs folder. When clicking on the Firefox file, a "Setup" pop up window appeared stating "Your computer must be restarted to complete a previous upgrade of Firefox. Do you want to reboot now?" Clicking "No" does not launch Firefox and clicking "Yes" reboots the computer, but nothing changes after restart and the same series of events keeps re-occurring. When clicking on the safe mode file, Firefox was launched. I went to "Add/Remove Programs" and found Mozilla Firefox 3.6.3. When attempting to remove the program, the same reboot "Setup" pop up appears, and the same non-results as previously described, persisted. I deleted all Firefox files and deleted the update set up .exe files. I again tried to remove the Firefox 3.6.3 program, with the same outcome as the previous attempt(s). I went to the Firefox website and downloaded the updated Firefox 7.0.1 set up .exe file, saved and ran it. When I reached the Setup Wizard page that prompts a "Standard" or "Custom" installation, I clicked on Standard and the same reboot pop up window appeared, again with no change after the reboot. So I have a Program installed (Firefox 3.6.3) with no files, and which can not be removed, an executed update/download .exe for Firefox 7.0.1 that can not be completely installed due to the failure to update by reboot problem. I'm out of ideas on how to try to resolve these problems. Any help would be greatly appreciated! Thank you

    Try a clean reinstall.
    * Download a fresh Firefox copy and save the file to the desktop.
    * Firefox 7.0.x: http://www.mozilla.com/en-US/firefox/all.html
    * Uninstall your current Firefox version.
    * Do not remove personal data when you uninstall the current version or you lose your bookmarks and other data in the profile folder.
    * Remove the Firefox program folder before installing that newly downloaded copy of the Firefox installer.
    * It is important to delete the Firefox program folder to remove all the files and make sure that there are no problems with files that were leftover after uninstalling.
    Your bookmarks and other profile data are stored elsewhere in the Firefox Profile Folder and won't be affected by a reinstall, but make sure that you do not select to remove personal data if you uninstall Firefox.
    * http://kb.mozillazine.org/Profile_folder_-_Firefox
    * http://kb.mozillazine.org/Profile_backup

  • How can I shut off all of the pop-up windows for all the Firefox updates?

    How can I shut off all of the pop-up windows for all the Firefox and Thunderbird updates?
    Apparently now Mozilla creates new versions of their browser and email apps every two weeks instead of just creating updates... I'm tired of all of the pop-up requests for these constant installation requests and all the problems that the new version installations create... I just want to use the software and be left alone.
    I can't find a way to make Firefox and Thunderbird stop with the pop-up requests for new installations... is there a way to do this or has Mozilla just got it rigged so one can't just use the software without re-installing a new version every two weeks and running in to new plugin issues and missing features every time?
    Help!
    Thanks,
    numetro

    Is it possible that her computer is infected with malware.
    Do a malware check with several malware scanning programs on the Windows computer.
    Please scan with all programs because each program detects different malware.
    All these programs have free versions.
    Make sure that you update each program to get the latest version of their databases before doing a scan.
    *Malwarebytes' Anti-Malware:<br>http://www.malwarebytes.org/mbam.php
    *AdwCleaner:<br>http://www.bleepingcomputer.com/download/adwcleaner/<br>http://www.softpedia.com/get/Antivirus/Removal-Tools/AdwCleaner.shtml
    *SuperAntispyware:<br>http://www.superantispyware.com/
    *Microsoft Safety Scanner:<br>http://www.microsoft.com/security/scanner/en-us/default.aspx
    *Windows Defender:<br>http://windows.microsoft.com/en-us/windows/using-defender
    *Spybot Search & Destroy:<br>http://www.safer-networking.org/en/index.html
    *Kasperky Free Security Scan:<br>http://www.kaspersky.com/security-scan
    You can also do a check for a rootkit infection with TDSSKiller.
    *Anti-rootkit utility TDSSKiller:<br>http://support.kaspersky.com/5350?el=88446
    See also:
    *"Spyware on Windows": http://kb.mozillazine.org/Popups_not_blocked

Maybe you are looking for