My program hangs while i open a file.

Using multiple threads, would be able to resolve this.However, i don't know anything about it. Please provide me with resources in labview that will allow me to do this.

Well, more information is needed in order to provide the adequate advice.
About Multithreading, check the following information from ni.com:
Application Note:
Using LabVIEW to Create Multithreaded Applications for Maximum Performance and Reliability
http://digital.ni.com/appnotes.nsf/b0be082ea11554328625648f006a132a/99dbde3436c215208625658a00633640?OpenDocument
KnowledgeBase:
Is multithreaded LabVIEW real-time?
http://digital.ni.com/public.nsf/3efedde4322fef19862567740067f3cc/277303856cf47ca3862565bc006c002c?OpenDocument
Good luck!
www.vartortech.com

Similar Messages

  • Can someone help me? How do I change the option to pick where or what program I want to open a file after I've downloaded it? I tried to look for an option for this and can't find it anywhere.

    For example I download a file and I click on it and there will sometimes be a window that opens saying what program I want to open the file with? And then it'll also have a check box saying if I want to use this program for all files I download. I can't change it when I download the file because that one file I keep downloading keeps crashing my Firefox and I have to force quit. It's really getting on my nerves. It's an online statement I'm trying to view and I want to get rid of that problem!! Is there anyway to change that option without going to that download page?

    I would recommend going into device manager on your PC and making sure that you have correctly installed the IR dongle. Also what version of hotsync manager are you currently using?
    Post relates to: Treo 800w (Sprint)

  • Acrobat X crashes and stops working about every 4 weeks. I have to uninstall and reinstall the program in order to open pdf files. Can this be fixed?

    Acrobat X crashes and stops working about every 4 weeks. I have to uninstall and reinstall the program in order to open pdf files. Can this be fixed?

    Turn off the updater.
    Mylenium

  • Program hanged while attempting to send java mail

    Java program hanges while atempting to send mail and below is the stack track. Can you please let us know what might using program to hang state.
    java.lang.Thread.State: RUNNABLE
    at java.net.SocketInputStream.socketRead0(Native Method)
    at java.net.SocketInputStream.read(SocketInputStream.java:129)
    at com.sun.mail.util.TraceInputStream.read(TraceInputStream.java:110)
    at java.io.BufferedInputStream.fill(BufferedInputStream.java:218)
    at java.io.BufferedInputStream.read(BufferedInputStream.java:237)
    - locked <0xb3b1a680> (a java.io.BufferedInputStream)

    Thanks, for your response.
    Yes its keep on listening state and not getting any data. Also we have set the timeout configuration and still program hangs.
    Not throwing any exception. Each time we have to take the jstack trace to check the error before killing the process id.

  • Java and Javaw hang when I open a file

    Hi,
    I had to clean install my laptop with XP Pro SP2 so I did, I also installed JDK 6 beta, but I tried this with JDK 5 update 7 as well as JDK 1.4.2_08.
    The problem I am experiencing is that when I have a tool (e.g. NetBeans 5 or Jext 5) or I have my own application, when I try to open a file, java or javaw hang, the application is "not responding" according to Windows.
    I've tried reinstalling various versions of the JDK but nothing helps. I'm at a loss here and about to reinstall the whole laptop again, but rather not.
    Any help would be really appreciated.
    Iwan

    Hi Barney,
    got it figured out - finally !
    If I click on a folder it opens up in its own 1/8 (or so) screen sized window from where I can then access sub folders and files within...and as I close each item down I'm back at the previous place - just as is required...BUT if I click the green 'expand window' button in the top left corner then that particular window  AND ALL PREVIOUS ONES will close down as soon as I select a folder or file from it.
    In short, the trick is to not expand any window at all...a pain, but can live with it.
    Got any ideas as how to stop this happening?
    Cheers
    Kev

  • Program Hangs While Adding First ActionListener

    Hey All,
    I'm trying to build myself a quick and dirty database application for maintaining my church's phone list and have hit a snag.
    My project (being developed in NetBeans IDE 6.5.1 on Slackware Linux 12.2) keeps hanging in the initComponents() function of my one and only form. After it goes through all of the Swing widget creation statements:
        tbMain = new javax.swing.JToolBar();
        btnExit = new javax.swing.JButton();
        tbSep1 = new javax.swing.JToolBar.Separator();
        btnPrint = new javax.swing.JButton();
        // 63 or so widgets deleted for convenience.
        mnuHelpIndex = new javax.swing.JMenuItem();
        mnuHelpSep1 = new javax.swing.JSeparator();
        mnuHelpAbout = new javax.swing.JMenuItem();the code comes to the setup of my first toolbar button, which is the btnExit:
        btnExit.setIcon(new javax.swing.ImageIcon(getClass().getResource("/cbpekin/art/application-exit.png"))); // NOI18N
        btnExit.setToolTipText("Exit the Application (Alt-x)");
        btnExit.setBorderPainted(false);
        btnExit.setFocusPainted(false);
        btnExit.setFocusable(false);
        btnExit.setHorizontalTextPosition(javax.swing.SwingConstants.CENTER);
        btnExit.setVerticalTextPosition(javax.swing.SwingConstants.BOTTOM);
        btnExit.addActionListener(new java.awt.event.ActionListener() {
          public void actionPerformed(java.awt.event.ActionEvent evt) {
            btnExitActionPerformed(evt);
        tbMain.add(btnExit);
        tbMain.add(tbSep1);Now, the btnExit.addActionListener() bit is where the run hangs up. This code is added in and controlled by the IDE, which does not allow me to edit it. Having said that, I don't see anything wrong with it and I get no errors or exceptions...the project just hangs as if it is working on something, but it never seems to go beyond this line. I have given it up to about 20 minutes to see if it was just going slow (which won't work at all, if that had been the case), but it never did continue past this point.
    At first, I thought that it could be an IDE issue, so I compiled my JAR file and tried to execute it directly from the command line, but it hung in my MainForm constructor (according to my logs), but never completed. Due to this, I'm assuming that when I ran it directly, it hung in the same place. When this didn't work, I tried using a different version of the IDE, to no avail...it still hung up at the same place. When I added that ActionListener, I was using NetBeans 6.7 milestone 3. Could that IDE having generated this code caused the problem that I'm experiencing? Changing to an older version of the IDE has not helped, but I'm open to anything at this point.
    Any thoughts as to things that I can try to trap exactly what is going on here or suggestions as to how to fix this weird "hang up" are most appreciated. I look forward to hearing what you all have to say.
    Cheers,
    Sean Carrick
    PekinSOFT Systems

    OK, All, this is what I've got:
    I tried just commenting out code to see where the hang up was being caused. As I had said in my original post:
    the code comes to the setup of my first toolbar button, which is the btnExit:
    btnExit.setIcon(new javax.swing.ImageIcon(getClass().getResource("/cbpekin/art/application-exit.png"))); // NOI18N
    btnExit.setToolTipText("Exit the Application (Alt-x)");
    btnExit.setBorderPainted(false);
    btnExit.setFocusPainted(false);
    btnExit.setFocusable(false);
    btnExit.setHorizontalTextPosition(javax.swing.SwingConstants.CENTER);
    btnExit.setVerticalTextPosition(javax.swing.SwingConstants.BOTTOM);
    btnExit.addActionListener(new java.awt.event.ActionListener() {
    public void actionPerformed(java.awt.event.ActionEvent evt) {
    btnExitActionPerformed(evt);
    tbMain.add(btnExit);
    tbMain.add(tbSep1);
    I could not determine at what point that the hang up started happening. Even after I had added the ActionListener for the btnExit toolbar button, my project still ran, until some indeterminate point where I added something to the project which caused it to start hanging up on this .addActionListener() line.
    Since I couldn't determine when the hang up started taking place by commenting out code. I decided to recreate the project from scratch (but bringing in files that I know were not causing the problem). By doing this, I've gotten to the point where I've got the btnExit ActionListener being added again and am not getting the hang up. This is really weird! I don't want to have to keep recreating my projects because of something crazy like this happening.
    I'm not sure if I had mentioned it in any of my replies to this thread, but when I had originally added the ActionListener for the btnExit toolbar button, I was using NetBeans 6.7 milestone 3. When I recreated the project, I did so in NetBeans 6.5.1. So, I'm beginning to think that the problem I had was actually with the version of NetBeans that I was using and not with the JDK or Java code that I had written.
    Any thoughts on this? This question is mainly for you folks that are like me and kind of a NetBeans freak. ;-)
    Cheers,
    Sean Carrick
    PekinSOFT Systems

  • App hang up when opening cc files?

    Are there any others having issues with opening InDesign CC files where the app hangs up and you have to force quite and restart it? This is happening way too often for me and I'm suspicious that it might have to do with Suitcase. Any help would be greatly appreciated. I've already had to force quit 3 times today. Thanks!

    Sorry if this is posted in the wrong forum
    Office questions should be posted on Microsoft's own forums for their Mac products:  http://www.officeformac.com/productforums

  • QtCreator hangs while trying to add files to a project

    Hi everyone.
    When I'm trying to add existing files to my current project (or even create new project) a file manager window appears to choose a file/folder. No matter what I do (ok, cancel, etc) this window won't close, and it also hangs the whole qtcreator.
    What's wrong with it?
    qtcreator 3.3.0-1
    DE - cinnamon 2.4.6-1
    Thanks in advance.
    Last edited by mkdy (2015-01-28 19:03:32)

    Downgraded following packages to older versions:
    qt5-base-5.3.2-2-x86_64.pkg.tar.xz
    qt5-declarative-5.3.2-2-x86_64.pkg.tar.xz
    qt5-quick1-5.3.2-2-x86_64.pkg.tar.xz
    qt5-quickcontrols-5.3.2-2-x86_64.pkg.tar.xz
    qt5-script-5.3.2-2-x86_64.pkg.tar.xz
    qt5-sensors-5.3.2-2-x86_64.pkg.tar.xz
    qt5-tools-5.3.2-2-x86_64.pkg.tar.xz
    qt5-translations-5.3.2-2-x86_64.pkg.tar.xz
    qt5-webkit-5.3.2-2-x86_64.pkg.tar.xz
    qtcreator-3.2.2-1-x86_64.pkg.tar.xz
    Works fine now.

  • Applet. Is it new while browser opens html file?

    I want to know if applet is new every time. I have an applet in html. it works to write some strings so I use param to transfer new string content. do it takes time to download applet everytime while the new string transfer to html file? in fact, browser get asp file.
    by the way:
    I am confused about that I should deal string by applet in browser or in server? which on is the better? I use w_server and asp.
    Thank you for your attention.

    Your question is a little unclear. You may want to start here (below). It explains the basics of how an applet works and its lifecycle.
    http://download.oracle.com/javase/tutorial/deployment/applet/index.html

  • Sample Program hangs while executing mining task

    Hi, we installed 9i (9.2.0.3, JServer Release 9.2.0.3.0) DM option. The two users related to ODM have been created by installation and been unlocked. I am trying to run the sample programs on the AIX UNIX server. I could succesfully compile these java programs but when I run them, they hang (for more than 1 hour) just after executing wait-on-task statement.
    On this server I could compile test java programs on O/S. I could store and execute those classes as java stored procedures.
    I suspect the reason is because ODM_MONITOR gives the following error:
    begin ODM.DMT_ODM.MONITOR_MAIN;end;
    ERROR at line 1:
    ORA-29541: class ODM.oracle/dmt/odm/internal/task/DMSMonitor could not be
    resolved
    ORA-06512: at "ODM.DMT_ODM", line 0
    ORA-06512: at line 1
    The reason could be that 72 Java classes under ODM DB account (including the corresponding class) are invalid. Even after reinstallation, they remain invalid. Anyone has any ideas as to why it is happening? Is there anything that I am missing? Any help is appreciated
    Thanks,
    Kiran

    Hi Kiran,
    Oracle Data Mining is not ported 9.2.0.3.0 release to AIX. The invalid objects are caused because AIX 9.2.0.3.0 relapse is using older version of the ODM libraries.
    Two possible solutions are:
    1. Use AIX 9.2.0.1 release (to which ODM was ported).
    2. Request Oracle support for a 9.2.0.3.0 port of ODM.

  • Why does firefox 3.6.13 keep asking me what program to use to open torrent files when default is already set?

    latest updates has done the same thing with all updates

    http://support.mozilla.com/en-US/kb/Managing%20file%20types#w_download-actions
    '''When you click a link to download a file, the [https://developer.mozilla.org/en/Properly_Configuring_Server_MIME_Types#What_are_MIME_types.3F MIME type] determines what action Firefox will take.'''
    Firefox doesn't go by the file extension like other browsers might. Wrong MIME type or a missing MIME type and Firefox will ask you what you want to do with the file.

  • User system gets freeze / Hang when he opens a file from SharePoint. But in chrome it works fine.

    Hi,
    This is the only USER who is facing above issue. But when he hold CTRL key and click on the file. It works fine. We are using IE 8 32 bit. Please note it works fine in IE 8 64 bit. 
    Could you please advise why it happens? Is this something share point admin should resolve or TECH SUPPORT should take care this issue?
    Thanks
    srabon

    There will be something odd setup in his IE settings. Get him to try to connect from another machine which also uses IE 8 32bit, the problem shouldn't be present there.
    That means that the issue is down to his local machines configuration which generally puts it under the tech support / desktop support teams purview.
    To help them along, blow away his cache and reset any of his settings you can find to the default.

  • Sample rate problems while re-opening .PCM file I recorded

    I recorded an audio using adobe audition and saved as a .PCM format but am having a problem with with file, it keeps giving me a heavy noise. Please any help?

    What is the sample rate and bit depth of the file?

  • HT2041 I receive an error message when opening up a downloaded program as "Safari can't open the file because no availabel application can open it". Not sure what exactly this means or what I have to do!

    I receive an error message when opening up a downloaded program "safari can't open the file because no available application can open it" I am not sure what I need to do to get these programs open!

    What is the file?
    Where did you get it from?
    Allan

  • Adobe reader 11 Hang during 1-2 minutes when opening a file

    Hello,
    We are very unhappy with Acrobat Reader. We have Some Hangs/Crash into us computers.
    With adobe acrobat reader upper tan 11.0.3  hang when start (open a file) during... approx 2 minutes.  During the Hang, Acrobat Reader be unresponsive.
    I tried to change the protected mode. change nothing. I can saw is when Acrobat Reader start the Tools Menu (for me).
    I tried to completely uninstall(registry and folders cleanup too) and do a fresh install, changed nothing.
    If we use 11.0.3 or 10.0.X, we don't have problems.
    Maybe the UTM firewall block something ?
    I need help, why i think we going to use Foxit if we don't fund the problem.
    Best Regards
    Vincent

    Hello,
    No, i checked. I bypassed the UTM Firewall and do same.  
    Yes, I can contact the cloud.acrobat.com, with or without firewall.
    I bypassed the Anti-Virus, same problem.
    I unchecked the "enable protection mode". Same.
    I modified the registry to be like this :
    64-bit:
    Keypath:          HKLM\SOFTWARE\Wow6432Node\Policies\Adobe\Acrobat Reader\11.0\FeatureLockDown
    Value name:   bProtectedMode
    Value type:     REG_DWORD
    Value data:     0
    32-bit:
    Keypath:          HKLM\SOFTWARE\Policies\Adobe\Acrobat Reader\11.0\FeatureLockDown
    Value name:   bProtectedMode
    Value type:     REG_DWORD
    Value data:     0
    [HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\11.0\IPM]
    "bDontShowMsgWhenViewingDoc"=dword:00000001
    "bShowMsgAtLaunch"=dword:00000000
    I saw one way to investigate !    We got a shortcut here  (power injection tests) and the network switch goes off. During the network was disconnected, the Reader work. (Only a little hang of 1-2 seconds during opening file instead the 3-5minutes Hang ). I successfully reproduce them simply with disable the network card.
    Please Adobe Team : Help me to investigate, to debug.
    I saw nothing bad with ProcessExplorer. I do a minidump.
    Which tool I can use to understand ?    Wireshark ?  

Maybe you are looking for

  • My purchased songs do not show up in my 'purchased' page on the itunes sotre.

    I've purchased a number of songs from itunes, and upon reformatting my computer I lost all of them. I followed all the steps I could find on the apple website, however my itunes (at the current version) seems to differ from what support on the websit

  • Blue screen of death (not iWork's problem) on 5s

    I've heard of people having the blue screen of death before. But unlike others my 5s just went to a blue screen on the App Store. Then it shut off and when It turned it back on it just went to the blue screen. It faded from blue then white and then t

  • Acrobat Pro 9.4.4 occasionally prints web pages as garbage

    Hello All, When I'm on a secure site like online banking, when I try to print a confirmation page it sometimes prints the DATA out as special characters, etc.  Even using the page's "Print" command doesn't help.  I'm not sure if this coincides with a

  • Clock not available

    while browsing my pre when i first got it, i noticed the clock app where you can set alarms etc, however after updating to 1.3.1 (o2) there is only the date and time app, with no alarm options available, however if i choose list apps, then clock is i

  • Mail not displaying Exchange emails sent from iOS devices

    Got 10.7.2 on my MBP and iOS 5 on iPad and iPhone, all synced to my account on my company's Exchange 2003 server. Emails that I send from either iOS device do not appear in the 'Sent' mailbox on the MBP. Incoming mails all display correctly on all de