Why my application take longtime to load on Labview 6?

since I'm programming with labview 6, my application take too much time to load. The executable is wrost. Is there a solution to sort out this problem?
Thanks

I think this is normal behavior. LabVIEW 6.0 performs many more checks on VIs when they load than 5.1. Are you getting the searching for VI window when you load your main VI? Are we talking on the order of 10secs?
Because your VI loads and runs properly, I do not think there is a problem with the installation of LabVIEW. You would reinstall if you wanted to make sure. You could see how fast the code loads on another machine for a benchmark. You can also improve the overall performace of your computer by adding RAM. This would speed loading and reduce the amount of virtual memory in use.
Finally, you can always contact tech support at www.ni.com\ask. Be sure to send them a VI so that you can compare load speeds.

Similar Messages

  • I just recently upgraded to Mavericks.  Why does it take awhile to load messages in mail after I click to open them?

    I just recently upgraded to Mavericks.  Why does it take awhile to load messages after I click to open them?

    I should have put more info with my question. Anyway, I regularly use Seamonkey with its built-in mail client because it works so well. I also can use the Yahoo site's mail feature and the mail also goes out instantly once I click on the send button. Only Mail takes up to 32 seconds to send out a mail. I watch the spinning wheel churn until the whoosh sound comes. Not acceptable, that is why I use Seamonkey. Another iMac in the house shows the same low level of performance sending out the mail from that computer, and that computer uses the ultra-fast Comcast internet while my computer uses the AT&T land line. I tried changing some of the settings, like changing the port numbers to no avail. I returned to the recommended AT&T port setting. Since I have never been able to get Mail to work the way I want it, I switched to Seamonkey, but have always been curious as to why it wants to take so long. I like Safari as the browser a little better, but will use Seamonkey because it has it all and works the way it should. Unless a cure for that elongated wait with the outgoing mail is found, I will have to stay with Seamonkey.

  • Why do thumbnails take forever to load?

    As the title suggests - why do the thumbnails take forever to load?. It is incredibly frustrating as I'm dealing with over 500 clips and I have to wait for these thumbnails to load. I come from Avid and decided to switch to Premier because of the available workflows. I've never had this issue using Avid so I know for sure it has nothing to do with my system. Any ideas? Furthermore, the media say that it is pending every now and them, why is this?

    Same issue. I've chatted with customer support and I'll summarize how helpful they were.
    Customer support took control of my computer in order to try and resolve the problem. I'm not sure what they did but they made everything WORSE. They deleted all my cache and did a whole bunch of other crap. Thumbnails don't load anymore - period. Questions regarding my other concerns - media pending, videos not playing, audio not importing - were completely ignored. Now here is where it gets better. This guy helping me out didn't respond for 30 minutes, I was wondering if he was further looking into it, but then it hit 7PM, when customer service closes. Apparently when the going gets tough and they have no idea how to resolve a situation, Adobe bleeds out and waits for 7PM to hit so they can just brush us off. I'm pissed.
    Looks like I'm going back to Avid and just round trip to Divinci.

  • TS5367 why do images take forever to load in my mail?

    just upgraded to 10.8.3 and now my mail takes forever to load images, banners, html, etc. even images that were previously loaded arent there when I reopen the program Mail v6.3

    Seems like it is still in the downloading process which may provide some lag time. Do you have slow or limited internet?

  • Application takes forever to load

    i recently completed a java application (simulation zoo) for a school project, which runs fine at uni and fine on unix machines. when i execute the file here at home on my P4 3Ghz, which is faster than the unix and uni computer, it takes about 4 minutes to load up.
    someone has suggested my run time environment is not configured or something????
    i have the j2se1.4.2 package installed and everything. it just runs like a snail. and this is a real problem when testing. there is no reason why it shouldnt load faster than the uni computers..
    all java software is installed on my machine, it does not pass through a network.
    can anyone help????

    ok here is the code.
    import java.util.ArrayList;
    *     Creates all of the site's objects such as the carpark, zoo and kiosk plus
    *     general organisation and running of the overall simulation display
    *     @author Daniel Holmes
    public class Simulation
         private UserInterface input = new UserInterface(); //Simulation interface
         private     final double CREATION_PROBABILITY = input.getGroupCreationFactor(); //Probability groups created with
         private double temperature = (double)input.getInitialTemperature();
         private final int TEMPERATURE_DIFFERENCE = 5;
         private final int TEMPERATURE_MAX = input.getInitialTemperature() + TEMPERATURE_DIFFERENCE;
         private final int TEMPERATURE_MIN = input.getInitialTemperature() - TEMPERATURE_DIFFERENCE;
         //Create the actual site objects/components
         private Zoo site = new Zoo(input.getSiteCapacity());
         private Walkway walkway = new Walkway();
         private Carpark carpark = new Carpark(input.getCarparkCarCapacity(), input.getCarparkBusCapacity());
         private Toilets toilets = new Toilets(input.getToiletCubicles());
         private Kiosk kiosk = new Kiosk(input.getKioskRegisters());
         //The statistics collecting object for this simulation     
         private Statistics stats = new Statistics(input.getCarparkCarCapacity(), input.getCarparkBusCapacity(),
              input.getSiteCapacity(), input.getKioskRegisters(), input.getToiletCubicles(),
              input.getCarFee(), input.getBusFee(), input.getEntryFee(), input.getKioskPriceRating());
         private int currentId = 0; //The id of a transport and group entering the site
         *     Creates a simulation object that governs the relationship between components in the site
         *     and simulates the passing of time within it and between the objects
         public Simulation()
              //Create a display panel with the site's characteristics then show it
              DisplayPanel displayPanel = new DisplayPanel(input.getSiteCapacity(), input.getToiletCubicles(),
                   input.getKioskRegisters(), input.getCarparkCarCapacity(), input.getCarparkBusCapacity());
              input.stateWindow(displayPanel).show();
              while(true) //Loop forever to run simulation continuosly
                   while(!input.isStatePaused()) //While the pause button isn't pressed
                        while(true) //Keep looping until a valid temperature is generated
                             final double TEMP_VARIATION = 0.05;
                             double temperatureIncrement = TEMP_VARIATION - (2 * TEMP_VARIATION * Math.random());
                             if((temperature += temperatureIncrement) <= TEMPERATURE_MAX
                                  && (temperature += temperatureIncrement) >= TEMPERATURE_MIN)
                             {//Checks if temperature within range and if it is, breaks the loop
                                  temperature += temperatureIncrement;
                                  break;
                        //Do nothing for the WAIT_TIME before the screen refreshes again
                        try
                             final int WAIT_TIME = 100;
                             Thread.sleep(WAIT_TIME);
                        catch(InterruptedException e)
                             System.out.println("Interrupted Exception caught");
                        groupsArrive();               //
                        parkTransports();          // Simulates the relationship when time passess
                        simulateWalkway();          // between the various objects for one time step
                        simulateKiosk();          // which is equal to 1 minute
                        simulateToilets();          //
                        simulateZoo();               //
                        stats.registerRunningCosts(); //Pay maintenance on the park for the specific time step
                        //Update the state of the display
                        displayPanel.registerState(temperature, carpark.getCarsParked(), carpark.getBusesParked(),
                             carpark.getWaiting(), walkway.getOccupants(), kiosk.getOccupants(),
                             toilets.getWaitingToGo(), site.getOccupants(), toilets.areCubiclesFull(), kiosk.outOfFood());
                   stats.getReport().show(); //Show report when paused, then do nothing until unpaused
                   while(input.isStatePaused()) {}
         *     Simulates the arriving of groups including driving into the carpark
         *     --postcondition: groups are only in cars if they fit inside a car and it's sent to the carpark
         private void groupsArrive()
              final int GROUP_SIZE_PROBABILITY = 7;
              final int CAR_MAXIMUM = 5; //Maximum number of people in a car
              final int BUS_SIZE_MAX = 25; //Maximum number of people in a bus
              double randomCalculator = Math.random() * 10; //A random number used for calculations of group creation
              //If random number within the probability of a group entering in a given time step and carpark is open
              if(!carpark.isQueueFull() && randomCalculator < CREATION_PROBABILITY)
                   //Create a random group size then assign them to a bus or car depending on the size
                   char transportMode = 'c';
                   final int GROUP_MINIMUM = 1;
                   int groupSize = GROUP_MINIMUM + (int) Math.round(Math.random() * GROUP_SIZE_PROBABILITY);
                   if(groupSize > CAR_MAXIMUM) //Scale group size up if was too big for a car
                        transportMode = 'b';
                        groupSize = ((int)Math.round(Math.random() * BUS_SIZE_MAX) + CAR_MAXIMUM);
                   //Create group and transport with unique, shared ids then park the transport in the carpark
                   currentId++;
                   TouristGroup group = new TouristGroup(groupSize, currentId);
                   Transport transport = new Transport(group, transportMode, currentId);
                   carpark.queueTransport(transport);
         *     Simulates the transports driving around until there is a parking space for them
         *     --postcondition: transports have only been allowed to park if there is room
         *     --postcondition: transports aren't let into the carpark if there's no room
         private void parkTransports()
              //Loops while there are transports waiting to park and there are still parking spaces available
              for(boolean done = false; !done; )
                   if((carpark.getWaiting()).size() > 0)
                        Transport tryingToPark = carpark.getNextWaiting();
                        if ((tryingToPark.getType() == 'c' && !carpark.isCarSpacesFull())
                             || (tryingToPark.getType() == 'b') && !carpark.isBusSpacesFull())
                             carpark.parkTransport(tryingToPark);
                             switch(tryingToPark.getType())
                             {//Determine transport type then ragister stats accordingly
                                  case 'c': stats.addCarParked(); break;
                                  case 'b': stats.addBusParked(); break;
                        else //If there are no spaces left exit the loop and add the people that have had to wait to stats
                             stats.addPeopleInTransportWaiting((tryingToPark.getPassengers()).getSize());
                             carpark.queueTransport(tryingToPark);
                             done = true;
                   else
                        done = true;
         *     Simulates the passing of time on the walkway in regards to the groups becoming more tired
         private void simulateWalkway()
              //Group just parked go onto walkway
              ArrayList groupsParked = carpark.getEnteringGroups();
              for(int i = 0; i < groupsParked.size(); i++)
                   walkway.addGroup((TouristGroup)groupsParked.get(i));
              //Check walkway groups if tired, etc
              checkGroups(walkway.getOccupants());          
         *     Simulates the passing of time within the kiosk
         private void simulateKiosk()
              kiosk.update();
              simulateServiceFacility('k', (ArrayList)(kiosk.getOccupants()).get(0), kiosk.getGroupsLeaving());
              if(kiosk.addServiceCharge())//Add service charge if the kiosk needs restocking
                   stats.addServiceCharge();
         *     Simulates the passing of time within the toilets
         private void simulateToilets()
              toilets.update(temperature);
              simulateServiceFacility('t', toilets.getWaitingToGo(), toilets.getGroupsLeaving());
              if(toilets.addServiceCharge())//Add toilet service charge if needed
                   stats.addServiceCharge();
         *     Helper method to simulate either the toilet or kiosk
         *     @param aService is the type of service ((k)iosk or (t)oilets) that the method is simulating
         *     @param aWaiting is an ArrayList of groups waiting for a service
         *     @param aLeaving is an ArrayList of groups leaving a service location
         private void simulateServiceFacility(char aService, ArrayList aWaiting, ArrayList aLeaving)
              for(int i = 0; i < aWaiting.size(); i++)//Add stats
                   stats.addPeopleWaitingForService(((TouristGroup)aWaiting.get(i)).getSize(), aService);
              while(aLeaving.size() > 0)//Let groups leave to where they came from
                   stats.addPeopleUsedService(((TouristGroup)aLeaving.get(0)).getSize(), aService);
                   if(((TouristGroup)aLeaving.get(0)).inZoo())
                        site.addGroup((TouristGroup)aLeaving.get(0));
                   else
                        walkway.addGroup((TouristGroup)aLeaving.get(0));
                   aLeaving.remove(0);
         *     Simulates the passing of time within and entering the actual attraction
         private void simulateZoo()
              //Transfer groups from walkway if room
              while(walkway.getOccupants().size() > 0 &&
                   ((TouristGroup)(walkway.getOccupants()).get(0)).getSize() < site.getVacancies())
                   site.addGroup(walkway.transferGroup());
              //check groups in zoo if tired, etc
              checkGroups(site.getOccupants());
         *     Calculates the number of people in the kiosk and finds if there is room for
         *     the group that is hungry to go in. Or alternatively, sends a group to the toilets
         *     if they need to go
         *     @param aGroups are the groups that are being checked
         *     --postcondition: the groups aren't altered in any way except for the effects of time
         private void checkGroups(ArrayList aGroups)
              for(int i = 0; i < aGroups.size(); i++)
                   boolean moved = false; //Whether the groups is sent to another location
                   TouristGroup aGroup = (TouristGroup)aGroups.get(i);
                   aGroup.update(temperature); //Make group more tired, etc
                   if(aGroup.needToGo()) //Check each attribute \/
                        moved = true;
                        toilets.addGroup(aGroup);
                   else if(aGroup.needReplenishment() && !kiosk.isFull() && !kiosk.outOfFood())
                        moved = true;
                        kiosk.addGroup(aGroup);
                   else if(aGroup.isTired())
                        moved = true;
                        carpark.removeTransport(aGroup.getId());
                   //Check initial location, then remove the group from there
                   if(moved && aGroup.inZoo())
                        site.removeGroup(i);
                   else if(moved && !aGroup.inZoo())
                        walkway.removeGroup(i);
                        stats.addPeopleWaitingOnWalkway(aGroup.getSize());
         /** Starts the whole simulation **/
         public static void main(String[] args)
              Simulation sim = new Simulation();
    }

  • I just received a Security Update from Apple for OS 10.6.8 and have experienced a severely slow reboot, taking 15-20 minutes. Applications take forever to load. Have rebooted twice... very slowly. What's up with this latest update?

    When I clicked on the recent Apple Security Software Update, it took 15-20 minutes to install, and another 15 minutes or more to restart. Then everything was amazingly slow, as if nothing was happening... spinning gears, spinning color wheels. The background universe image took forever to load. Desktop took a long time to load. Then Mail and Safari took a long time to load. What has happened? Was this update legit? I'm thinking it was the legitimate listed 7-2-2013 update for 10.6.8, but in my 15 years of Apple loyalty, I've never experienced an update that bogged my system down like this.

    Not enough free space on the startup disk can cause the issues you are referring to.
    Control click the MacintoshHD icon on your desktop then click Get Info.
    You'll see:  Capacity & Available
    Make sure there's at least 15% free disk space.
    If it's not a disk space issue, verify the disk for errors.
    Launch Disk Utility located in HD > Applications > Utilities
    Select the startup disk on the left then select the First Aid tab.
    Click:  Verify Disk  (not Verify Disk Permissions)
    If Disk Utility reports problems, you will need to insert your install disc to make repairs.
    And if you have not done so lately, backup all your important data just in case.

  • Why does it take forever to load mail messages once clicked on on the left

    My mail seems to have trouble loading in the view side of the mail window.  this happens with all the new mail old mail is usually opened immediately.  The New ones just keep showing a loadind icon in the window.  Does anyone know how to fix this?

    Seems like it is still in the downloading process which may provide some lag time. Do you have slow or limited internet?

  • VI with Several XControls on nested tabs takes minutes to load in LabVIEW 2013

    Hello all,
    I have a VI in LabVIEW 8.2 that includes more than 400 Xcontrols in nested tabs, which opens in seconds (very fast). The code was upgraded to LabVIEW 2013 and now the VI takes minutes to open and in the meantime LabVIEW is unusable with the CPU at 100%.
    I am wondering if anybody has experienced this behavior with Xcontrols.
    Thanks.

    Please note that I am working with jarcTek on this project where we inherite that UI with so many XControls instances.
    It is not like there are a lot of different XControls (there are a total of about 10 different type of XControls), but there are a lot of instances of these XControls (several 100) in 3 levels of nested tabs.
    Yes, we both had the time to re-recompile the source code between the two posts that jarcTek made. The various XControls are stored in 4 different llbs. Most of the XControls that have a lot of instances are actually pretty simple (very little code there). Finally, yes the VI property  (or the XControl library property general settings) indicate that the code is in LabVIEW 2013 [see image below]. 
    You are correct, the delay occurs after the VI is loaded from disk. The loading time is fine (we see the loading progress/dialog since there are a few 100s vis to load with that main UI), but after that everything hangs for several minutes (cpu peg at 100%). We run the Desktop execution toolkit, and we can see a lot of XControl events (1000s) that are fired during this time.
    FYI: Unloading (closing) the VI is also very slow.
    To put this in perspective, In LabVIEW 8.2 the same code is ready to run immediately after the UI opens.
    Thanks
    PJM

  • Why am I getting "Unable to load a labview run-time engine because teststand is shutting down" error?

    After running a successfull TestUUT's in a custom UI.  I exit my UI, then open it again and I get Error Code -17338.
    See attached for detail .jpg
    Collegues of mine suggest it's because I haven't closed a reference somewhere, but I have closed everything possible.
    Any suggestions?

    Perry,
    Thanks for getting back to me today.
    I have closed everything I know how to and compared to the Simple OI. 
    You mention closing the Application manager, but I don't see that happening anywhere.  Do you mean closing the application, and engine, and etc...?  I have never closed the "Application Manager" specifically and am not sure how.
    I have attached an image of how I close things up.
    Thanks,
    Attachments:
    CloseRefs.jpg ‏218 KB

  • I have IE & Firefox on both my laptop and desktop. Why is Firefox so much slower than IE7? Firefox seems to take forever to load pages!

    I have a HP laptop & Dell desktop with IE7 and Firefox. I use Firefox more as I like it better than IE, yet the pages in Firefox load so slow. I thought the new version of Firefox was so much faster, but it seems to drag along and take forever to load pages. Why is this??
    == This happened ==
    Every time Firefox opened
    == 6/17/2010

    Please ask your question on a forum for the Flash Player

  • Why does it take. So much longer for YouTube videos to load on my iPad 1st gen. then on my iPod touch?

    Why does it take so much longer for YouTube videos to load on my 1st gen. iPad then on my iPod touch or my laptop?

    This is not the place to make a point. This is a user to user support forum. I do not need instructions about the use and care or alleged failure of cables. At no time did I ever say or imply that you were an idiot, that is your statement and words, not mine. Take the time to Google and you will find instances where there have been injuries and death dealing with 3rd party cables and chargers. The abilities that Apple has for manufacturing and what business decisions they make in creating their products is nothing more than speculation, and that is not allowed under the terms of the forum that you agreed on when you joined here. If you want to rant at Apple, then use the feedback link, www.apple.com/feedback. Other users cannot do anything for you.

  • Why does iMessenger not work/takes ages to load?

    Why does iMessenger not work/takes ages to load?
    - done all the log in stuff (username and display name but then takes for ever to load so just give up!

    How has it stopped working?
    ARe you on wifi or cellular data?

  • Why does it take so long to load a web page on my iPad

    Why does it take so long to load a web page on my new ipad wifi

    This is probably not a problem with the iPad, but with the wi-fi. If your internet connection and/or wi-fi speeds are slow, then loading web pages will be slow. If I was you, I would research different kinds of wireless routers to find the fastest one in your price range, and also research different kinds of modems.

  • Why does it take so long for the firefox 5 beta to load,I thought I was on dail up when i have roadrunner.it took 10 mins for it to load.Could it be vista or what?

    Why does it take so long for the firefox 5 beta to load,I thought I was on dail up when i have roadrunner.it took 10 mins for it to load.Could it be vista or what? everytime i use beta 5

    Clear Cache ------- select only Cache
    * https://support.mozilla.com/en-US/kb/Template:clearCookiesCache
    Clear the Network Cache
    * https://support.mozilla.com/en-US/kb/How%20to%20clear%20the%20cache#w_clear-the-cache
    Troubleshooting extensions and themes
    * https://support.mozilla.com/en-US/kb/Troubleshooting%20extensions%20and%20themes
    -> Tap ALT key or pres F10 to show the Menu bar
    * go to Tools Menu -> Options -> Advanced -> General -> Remove Checkmark from '''Warn me when websites try to redirect or reload the page''' -> click OK - > Restart Firefox
    Check and tell if its working.

  • Why does it take 121 hours to load a movie on AppleTV?

    Why does it take 121 hours to load a movie on AppleTV? We are connected to Wifi with a good signal, but nothing seems to work well. We can play music for awhile, but then it just drops us.  Tried apple support, not available 'til tomorrow.  Purchased yesterday.
    Actually we watched the movie yesterday, and now it has to load again.  It's on the ipad and plays, no problem.  Want to watch it on the tv.  Any Thoughts?
    Ready to take it back.

    Apple TV has no accessible storage, it will need to load each time. The time it takes is dependent on your network.
    What is your current connection via speedtest.net
    Make sure DNS is set to auto (settings - general - network)
    The signal/network test on the device won't give a proper indication if there is a network issue. You will need to try ethernet to help rule that out, and it will also help to get a network report (istumbler, netstumbler or similar. It will show signal strength and noise as well as nearby networks)

Maybe you are looking for

  • Balance in transaction currency

    Hi, I am getting below error while posting MIRO transaction:  Balance in transaction currency Message no. F5702 Diagnosis A balance has occurred in transaction currency 'SAR' with the following details: Exchange rate '00', amount '8,199.40' and curre

  • Powerbook G4 freezing at blue bar startup

    Hi there I have a Powerbook G4 Titanium (1Ghz processor) 1Gb RAM. For nearly 5 years it has given me no problems. I have Tiger 10.4.8 installed. A week ago it suddenly started to get very slow and required restarting 3 or 4 times before the problem s

  • How to save a form for intern use for a client?

    Hi, I can only choose between using the FormCentral, email or a server (of which I can't get access). My client needs the form for ONLY intern use - like a simple PDF-doc that eventually collects their data. I used to make such forms in previous vers

  • Water damaged the bb pearl 8100 - pl help

    i drop the black berry in water and immediately took it out and wiped it... tried to switch it on... but it did not work. i came home and dried it with a hair dryer and put the charger on. the screen is coming, but the phone is not working. i replace

  • Error while applying OPatch

    Hello, I just upgraded the database from 10.1.0.2 to 0.4, now I try to apply the April 2006 patch and I get the following error message...I have included the complete listing. Please help. thx SS Oracle Interim Patch Installer version 1.0.0.0.52 Orac