My VI stop Execution Suddenly

Hello all,
I am making a LabVIEW Real TIme project, it consists of an automation of a platform.
The system is set upas following:
The Platform is connected to the PXI using the M series 6289 DAQ
The PXI controller is 8106, I have made it a Real Time Target
The host computer is Running VISTA home premium (it has a dual core processor)
Everyhting is ok and the VI ran in good mannar, but after some time the VI stop suddenly.
I have ran it several times, it stop after the same time.
When O re run it, it works normally untill the same amount of time, it stops.
Any Help is so much Appriciatted
Best Regards!

Hi Azzam87,
Thanks for the post and I hope your well today.
Two things come to mind,
1) Is your code reaching the same peice of code and crash - as in, something is upseting it.
or
2) Have you got a memory issue, which is causing it to error. 
To get more information you could have a look at the error log,
Is There an Error Log File for my Real-Time Controller?
http://digital.ni.com/public.nsf/allkb/E734886E027​D0B6586256F2400761E30?OpenDocument
Are you running an RT.exe or from LabVIEW? If you run it from LabVIEW you could set some probes and see where the code is reaching when it crashes. 
Hope thie helps,
Kind Regards
James Hillman
Applications Engineer 2008 to 2009 National Instruments UK & Ireland
Loughborough University UK - 2006 to 2011
Remember Kudos those who help!

Similar Messages

  • How to stop execution in while loop without stopping execution of other loops in the same vi

    HI
    I am quite a novice in Labview.
    I have a problem in my project. I used a while loop inside my vi to build an array of ten values along with other loops. Then I used a stop button to stop manually the while loop. But it seems like the loop doesn't stop in the middle of the array building and so other loops in the vi doesn't work until the while loop finishes building the array and as soon as while loop execution is over, the complete vi stops. But all that I wanted was to build the array using the shift register along with the control to stop building array anytime. And not to stop execution of other structures when the while loop finishes.
    Can anyone help me?
    Rahul

    Hi Rahul,
    Modified ur Vi to work with single button.
    But the subtract case is not in any loop.
    So, once both the loops stop, the subtract case will execute only once. Depending on state of subtaract boolean at that time, corresponding case will be executed and the Vi will stop.
    so think of a logic where u can put this also in a new loop.
    Or you can also incorporate it in one of the two loops and pass the other loop's data to it.
    Let us know how you will proceed in this regard
    I am posting your VI as well a VI with my modifications VI in Labview 7.0 so that Thomas can give his suggestions too
    Plus, always keep a time delay in your while loops.
    Oh sorry, the "arrayinouttestnewfinal.vi" is the modified vi
    Regards
    Dev
    Message Edited by devchander on 01-10-2006 06:15 AM
    Message Edited by devchander on 01-10-2006 06:19 AM
    Attachments:
    arrayinouttestnewfinalnew4.vi ‏59 KB
    arrayinouttestnewfinal.vi ‏63 KB

  • Stop execution until GUI is completed

    I wrote a program to monitor a seniority list. If an odd last name, first name, etc is encountered, a gui opens to request the proper form of the name. The problem is that the program keeps running even though the gui has not yet been fililed out. How do I stop execution until the GUI is completed?
    Thanks
    Joe

        public static void readFile2(String lnames   [], String fnames[], String mnames[],
                                     String facs     [], String sdates[], String scores[],
                                     String scrambles[], String filename)
            String tempTitle = "JR";
            System.out.println("Inside ReadFile");
            try
                System.out.println("Inside Try");
                BufferedReader in = new BufferedReader(new FileReader( filename ));
                        //"C:/Documents and Settings/Joe/JavaApplication1/src/test.txt"));
                String tempElement  = "";
                //String tempElements[15];
                String tempElement1 = "";
                String tempElement2 = "";
                String tempElement3 = "";
                String tempElement4 = "";
                String tempElement5 = "";
                String tempElement6 = "";
                String tempElement7 = "";
                String tempElement8 = "";
                String tempElement9 = "";
                String tempElement10 = "";
                String tempElement11 = "";
                String tempElement12 = "";
                StringTokenizer data;
                String S;
                int numberOfTokens = 0;
                int numberOfWords  = 0;
                int numberOfLines  = 0;
                S = in.readLine();
                data = new StringTokenizer(S);
                numberOfTokens = data.countTokens();
                //System.out.println("Next Token " + data.nextToken());
                //System.out.println(data);
                //array[row][col]
                System.out.println("Ready to Tokenize");
                int i = 0;
                int q = 0;
                int lineCount = 0;
                while( ( ! S.equals("") ) && (data.hasMoreTokens() )
                                          && (S.trim().length() != 0))//in.readLine()
                    int col = 0;
                    int j = 0;
                    //while( i < SenListHelpers.getArrayLength(tempElements2) )
                        while( data.hasMoreTokens() )
                            tempElements1[i][j] = data.nextToken();    //get LName
                            System.out.println(" Getting tempElements1[ " + i + " ]" + "[ " + j + " ]" + tempElements1[i][j]);
                            //System.out.println("tempElements [" +  i  +  "] "    + tempElements1[i][j]);
                            j ++;
                        i ++;
                        System.out.println(" i = " + i );
                        int p = 0;
                        System.out.println("tempElements [" +  q  +  "] "    + tempElements1[q][p]
                                                                       + " " + tempElements1[q][p+1]
                                                                       + " " + tempElements1[q][p+2]
                                                                       + " " + tempElements1[q][p+3]
                                                                       + " " + tempElements1[q][p+4]
                                                                       + " " + tempElements1[q][p+5]
                                                                       + " " + tempElements1[q][p+6]);
                        q ++;    
                        //#2
                            ( compareStringByCase(tempElements1[lineCount][0], "DE"    ) ) ||
                            ( compareStringByCase(tempElements1[lineCount][0], "LE"    ) ) ||   
                            ( compareStringByCase(tempElements1[lineCount][0], "LA"    ) ) ||
                            ( compareStringByCase(tempElements1[lineCount][0], "MC"    ) ) ||  
                            ( compareStringByCase(tempElements1[lineCount][0], "ST"    ) ) ||
                            ( compareStringByCase(tempElements1[lineCount][0], "ST."   ) ) ||   
                            ( compareStringByCase(tempElements1[lineCount][0], "VAN"   ) ) ||    
                            ( compareStringByCase(tempElements1[lineCount][0], "EL"    ) )
                        if( ( SenListHelpers.compareStringByCase(tempElements1[lineCount][0], "DE"    ) ) ||
                            ( SenListHelpers.compareStringByCase(tempElements1[lineCount][0], "LE"    ) ) ||   
                            ( SenListHelpers.compareStringByCase(tempElements1[lineCount][0], "LA"    ) ) ||
                            ( SenListHelpers.compareStringByCase(tempElements1[lineCount][0], "MC"    ) ) ||  
                            ( SenListHelpers.compareStringByCase(tempElements1[lineCount][0], "ST"    ) ) ||
                            ( SenListHelpers.compareStringByCase(tempElements1[lineCount][0], "ST."   ) ) ||   
                            ( SenListHelpers.compareStringByCase(tempElements1[lineCount][0], "VAN"   ) ) ||    
                            ( SenListHelpers.compareStringByCase(tempElements1[lineCount][0], "EL"    ) ) )
                            System.out.println("");
                            correctOfficerGUI test = new correctOfficerGUI(tempElements1, lineCount);
                            test.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);  
                            return;// from this method;
    //Here is the GUI class
    public class correctOfficerGUI extends JFrame
            private final JTextField nameInfo, lname, fname, mname, sdate, score, scramble;
            private JPanel form;
            private final JFrame f;
            //EASTERN NY
            public static String nameInfoString   = new String();
            String facilities[] = {     
            "ADIRONDACK",     "ALBION",    "ALTONA", "ARTHUR KILL", "ATTICA",                         
         "AUBURN CORR",  "BARE HILL", "BAYVIEW",     "BEACON", "BEDFRD HILL",                    
            "BUFFALO",      "BUTLER",    "BUTLER ASAT", "GABRIELS",     "GEORGETOWN",                    
         "PHARSALIA",     "CAPE VINCEN", "CAYUGA", "CHATEAUGAY", "CLINTON COR",     
         "COLLINS",     "COXSACKIE", "DOWNSTATE", "EASTERN NY", "EDGECOMBE",                    
         "ELMIRA CNTR",  "FISHKILL",  "FIVE POINTS", "FRANKLIN", "FULTON FAC",                    
         "GOUVERNEUR",     "GOWANDA", "GREAT MEADW", "GREEN HAVEN", "GREENE",                         
         "GROVELAND",     "HALE CREEK", "HUDSON", "LAKEVIEW", "LAKEVIEW ASA",
         "LINCOLN FAC",     "LIVINGSTON", "LYON MTN", "MARCY", "MID-ORANGE",                    
         "MID STATE",     "MOHAWK",     "MONTEREY", "MORIAH SICF", "MT MCGREGOR",     
            "NYC CTL ADM",  "OGDENSBURG", "ONEIDA",  "ORLEANS", "OTISVILLE",                    
         "QUEENSBORO",     "RIVERVIEW",  "ROCHESTER", "SHAWANGUNK", "SING SING",                    
         "SOUTHPORT",     "SULLIVAN",   "SUMMIT",     "TACONIC C F", "ULSTER",                         
         "UPSTATE",     "WALLKILL",  "WASHINGTON", "WATERTOWN", "WENDE",                         
         "WILLARD",     "WOODBOURNE", "WYOMING"};
        public correctOfficerGUI(String[][] array, int lineCount)
            //JFrame
            f = new JFrame("Add Officer");
            // Make a panel to hold the demo �form", then
            // add it to the top of the frame�s content pane
            //JPanel
            form = new JPanel();
            f.getContentPane().setLayout(new BorderLayout());
            f.getContentPane().add(form, BorderLayout.NORTH);
            // Set the form panel�s layout to GridBagLayout
            // and create a FormUtility to add things to it.
            form.setLayout(new GridBagLayout());
            FormUtility formUtility = new FormUtility();
            // Add some sample fields
            System.out.println(array[lineCount][0] + " " + array[lineCount][1] + " " +
                               array[lineCount][2] + " " + array[lineCount][3] + " " +
                               array[lineCount][4] + " " + array[lineCount][5] + " " +
                               array[lineCount][6] + " " + array[lineCount][7] );
            formUtility.addLabel("Name Info: ", form);
            //JTextField
            nameInfo = new JTextField();
            Dimension nameInfoSize = nameInfo.getPreferredSize();
            nameInfoSize.width = 180;
            nameInfo.setPreferredSize(nameInfoSize);
            JPanel nameInfoPanel = new JPanel();
            nameInfoPanel.setLayout(new BorderLayout());
            nameInfoPanel.add(nameInfo, BorderLayout.WEST);
            formUtility.addLastField(nameInfoPanel, form);
            nameInfo.setText(getNameInfo(array, lineCount));
            formUtility.addLabel("Last Name: ", form);
            //JTextField
            lname = new JTextField();
            Dimension lnameSize = lname.getPreferredSize();
            lnameSize.width = 150;
            lname.setPreferredSize(lnameSize);
            JPanel lnamePanel = new JPanel();
            lnamePanel.setLayout(new BorderLayout());
            lnamePanel.add(lname, BorderLayout.WEST);
            formUtility.addLastField(lnamePanel, form);
            //lname.setText("xxx");
            formUtility.addLabel("First Name: ", form);
            //JTextField
            fname = new JTextField();
            Dimension fnameSize = lname.getPreferredSize();
            fnameSize.width = 150;
            fname.setPreferredSize(fnameSize);
            JPanel fnamePanel = new JPanel();
            fnamePanel.setLayout(new BorderLayout());
            fnamePanel.add(fname, BorderLayout.WEST);
            formUtility.addLastField(fnamePanel, form);       
            formUtility.addLabel("Middle Initial: ", form);
            //JTextField
            mname = new JTextField();
            Dimension mnameSize = mname.getPreferredSize();
            mnameSize.width = 20;
            mname.setPreferredSize(mnameSize);
            JPanel mnamePanel = new JPanel();
            mnamePanel.setLayout(new BorderLayout());
            mnamePanel.add(mname, BorderLayout.WEST);
            formUtility.addLastField(mnamePanel, form);   
            formUtility.addLabel("Facility: ", form);
            //JTextField spacer = new JTextField();
            //Dimension spacerSize = spacer.getPreferredSize();
            //spacerSize.width = 20;
            //spacer.setPreferredSize(spacerSize);
            JPanel spacerPanel = new JPanel();
            spacerPanel.setLayout(new BorderLayout());
            //spacerPanel.add(spacer, BorderLayout.WEST);
            formUtility.addLastField(spacerPanel, form);   
         //Container contentpane;
            //contentpane = getContentPane();
         //contentpane.setLayout(new FlowLayout());
            final JList list = new JList(SenListArraySetUp.facilities);
            /* getFacilityIndex( SenListHelpers.getFacility(array, lineCount), facilities ) */
            System.out.println("getFacility     " + SenListHelpers.getFacility(array, lineCount) );
            System.out.println("*******");
            //System.out.println("getFacility     " + getFacilityIndex( SenListHelpers.getFacility(array, lineCount), SenListArraySetUp.facilities ) );
            //getFacilityIndex( SenListHelpers.getFacility(array, lineCount), facilities );
            System.out.println(" ");
            int index = getFacilityIndex( SenListHelpers.getFacility(array, lineCount), SenListArraySetUp.facilities );
            System.out.println("Index    " + index);
         list.setSelectedIndex(0);
            list.setVisibleRowCount(1);
         list.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
         //contentpane
            spacerPanel.add(new JScrollPane(list));
            formUtility.addLabel("Seniority Date: ", form);
            //JTextField
            sdate = new JTextField();
            Dimension sdateSize = sdate.getPreferredSize();
            sdateSize.width = 70;
            sdate.setPreferredSize(sdateSize);
            JPanel sdatePanel = new JPanel();
            sdatePanel.setLayout(new BorderLayout());
            sdatePanel.add(sdate, BorderLayout.WEST);
            formUtility.addLastField(sdatePanel, form); 
            sdate.setText(array[lineCount][SenListHelpers.getSenDateIndex(array, lineCount)]);
            formUtility.addLabel("Score: ", form);
            JTextField score = new JTextField();
            Dimension scoreSize = score.getPreferredSize();
            scoreSize.width = 20;
            score.setPreferredSize(scoreSize);
            JPanel scorePanel = new JPanel();
            scorePanel.setLayout(new BorderLayout());
            scorePanel.add(score, BorderLayout.WEST);
            formUtility.addLastField(scorePanel, form);       
            formUtility.addLabel("Score: ", form);
            //JTextField
            score = new JTextField();
            Dimension scoreSize = score.getPreferredSize();
            scoreSize.width = 30;
            score.setPreferredSize(scoreSize);
            JPanel scorePanel = new JPanel();
            scorePanel.setLayout(new BorderLayout());
            scorePanel.add(score, BorderLayout.WEST);
            formUtility.addLastField(scorePanel, form); 
            score.setText(array[lineCount][SenListHelpers.getArrayColLength(array, lineCount)]);
            formUtility.addLabel("Scramble: ", form);
            //JTextField
            scramble = new JTextField();
            Dimension scrambleSize = scramble.getPreferredSize();
            scrambleSize.width = 30;
            scramble.setPreferredSize(scrambleSize);
            JPanel scramblePanel = new JPanel();
            scramblePanel.setLayout(new BorderLayout());
            scramblePanel.add(scramble, BorderLayout.WEST);
            formUtility.addLastField(scramblePanel, form);       
            JButton addButton = new JButton("Add");
            form.add(addButton);
            //addButton.add(       
         addButton.addActionListener(
              new ActionListener()
              public void actionPerformed( ActionEvent actionEvent )//valueChanged(ListSelectionEvent e)
                        System.out.println("LName is:    " + lname.getText());
                        System.out.println("FName is:    " + fname.getText());
                        System.out.println("MName is:    " + mname.getText());
                        System.out.println("Facility is: " + SenListArraySetUp.facilities[list.getSelectedIndex()]);
                        System.out.println("SenDate is:  " + sdate.getText());
                        System.out.println("Score is:    " + score.getText(/*SenListHelpers.getArrayColLength(array, lineCount - 1)*/));
                        System.out.println("Scramble is: " + scramble.getText(/*SenListHelpers.getArrayColLength(array, lineCount)*/));
                        nameInfoString = lname.getText()    + " " + fname.getText() + " " + mname.getText() + " " +
                                         SenListArraySetUp.facilities[list.getSelectedIndex()]
                                                            + " " + sdate.getText() + " " + score.getText() + " " +
                                         scramble.getText();
                        //System.out.println("Size is: " + SenListHelpers.getArrayLength(SenListArraySetUp.NYSDOCS_Alpha_List_LastNames));
                        insertMethods.insertIntoNYSDOCSAlphaHelper(
                           lname.getText(), fname.getText(), mname.getText(),     
                          facilities[list.getSelectedIndex()],               
                          sdate.getText(), score.getText(), scramble.getText() );
                        //form.cl
                        f.dispose();
                        JOptionPane.showMessageDialog(null, "The Officer has been Added.");
                        //return;                   
                        //System.exit(0);
                        //System.out.println("Facility is:    " + facilities[list.getSelectedIndex()]);
                        /**/ //System.out.println("Facility is:    " + facilities[list.getSelectedIndex()]);
                  //contentpane.setBackground(listColorValues
                        //[list.getSelectedIndex()]);
            // Add an little padding around the form
            form.setBorder(new EmptyBorder(2, 2, 2, 2));
    //        f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);//original close operation
            // Note that we don�t use pack() here, since that
            // may shrink the �last" column more than we want.
            f.setSize(300, 300);//230);
            f.setVisible(true);
            //return;
        }

  • How to stop execution after generating error message in an error handler?

    I am working on ALSB 3.0.I have a proxy consisting of 2 stages in a pipeline pair. I have error handlers for each of the stages. The first stage contains schema validation action. Whenever the schema validation fails,control should transfer to error handler.
    The error handler has a publish action and in request action I am calling an xquery transformation to generate error message.Publish action should publish message to a jms based business service configured. My questions are:
    1. After getting into the error handler, the first alert msg configured inside request action (of publish action) is generated.Subsequent actions to generate error xml message and to replace the contents of errorXml in $body are not executed.And so no error message is generated or published.
    2. I have also configured a reply with failure. Inspite of that,the control shifts to next stage in request pipeline and execution continues.
    Can anyone tell me where I need to do the corrections.
    Cheers.
    Edited by: arrajago on Jun 15, 2009 11:55 PM

    Got the answer.Generate error xml outside publish action.Replace action has to placed inside Publish's request action.To stop execution,use Reply action after Publish.

  • My iPod nano 6G stop working suddenly; After i reset it and even afetr put it in "stand by" mode by accessing deagnostic mode, it is still not working; Now i can access it sometimes (the main screen), but is not playing and is too slow. How can i fix it

    My iPod nano 6G stop working suddenly; After i reset it and even afetr put it in "stand by" mode by accessing deagnostic mode, it is still not working; Now i can access it sometimes (the main screen), but is not playing and is too slow. How can i fix it

    If you do not find a solution in the iPod nano (6th generation) - User Guide, suggest that you call AppleCare if still under warranty or take a trip to your local Apple Store or AASP.

  • Stopping execution

    Is there a way to stop execution of a query after Nth
    record?

    This page,
    http://www.devx.com/gethelpon/10MinuteSolution/16608/0/page/3,
    has some examples of using rownum. I must be missing something
    because it appears to do what you want.
    Of course, if you want to include ties for nth place, the
    rank() is probably more appropriate. Examples are here:
    http://www.devx.com/gethelpon/10MinuteSolution/16608/0/page/5

  • Deploying Stop Working Suddenly

    hi,
    i have MDT 2013 with 4 Deployment shares, one of the deployment shares stop working suddenly "windows 7 deployment share" . when i start the network boot i can see a list of boot image but when i choose that image it gives me the windows loading
    screen for ever and not start the deployment process. other boot images is working fine
    can anyone help me to solve this problem
    thanks 
    Sameh Ismail System Administrator

    @Keith:
    Why are you always proposing your 'further questions' as answers? That's not adequate in any way!
    Especially as a 'Moderator' you should know better, I really dislike this and I am quite sure that I am not on my own with this opinion.
    http://social.technet.microsoft.com/wiki/contents/articles/4865.whether-or-not-you-should-self-propose-an-answer-in-an-msdn-or-technet-forum.aspx
    It is pretty obvious from the post that this happens while loading WinPE, what is there to misinterpret?
    Are you using different WDS servers for your sites?
    If yes, try to remove the boot image from the 'Broken' one and re-import it.
    Comparing checksums is never a bad idea in such a scenario.

  • My iPad stop working suddenly i see black screen only pressing the home? and sleep button dose not solve the  problem please help?

    My iPad stop working suddenly i see black screen only pressing the home and sleep button dose not solve the problem please help ?

    Frozen or unresponsive iPad
    Resolve these most common issues:
        •    Display remains black or blank
        •    Touch screen not responding
        •    Application unexpectedly closes or freezes
    http://www.apple.com/support/ipad/assistant/ipad/
    iPad Frozen, not responding, how to fix
    http://appletoolbox.com/2012/07/ipad-frozen-not-responding-how-to-fix/
    iPad Frozen? How to Force Quit an App, Reset or Restart Your iPad
    http://ipadacademy.com/2010/11/ipad-frozen-how-to-force-quit-an-app-reset-or-res tart-your-ipad
    Black or Blank Screen on iPad or iPhone
    http://appletoolbox.com/2012/10/black-or-blank-screen-on-ipad-or-iphone/
    What to Do When Your iPad Won't Turn On
    http://ipad.about.com/od/iPad_Troubleshooting/ss/What-To-Do-When-Your-Ipad-Wo-No t-Turn-On.htm
    iOS: Not responding or does not turn on
    http://support.apple.com/kb/TS3281
    Home button not working or unresponsive, fix
    http://appletoolbox.com/2013/04/home-button-not-working-or-unresponsive-fix/
    Fixing an iPad Home Button
    http://tinyurl.com/om6rd6u
    iPad: Basic troubleshooting
    http://support.apple.com/kb/TS3274
     Cheers, Tom

  • HT201401 I have I phone 4s and the speaker stop working suddenly, I can hear through the headphone, please advice what is the problem? Thanks

    I have I phone 4s and the speaker stop working suddenly, I can hear through the headphone but when I remove the headphone can not hear anything , please advice what is the problem? Thanks

    Thanks for your reply, but what shall I do now ? I bought this phone from china's apple store, and I am in Egypt so there is no warranty for this phone in my county, please advice how can I solve this problem? Is there any troubleshooting tips I can follow to solve this problem ?
    Thanks  

  • My macbook pro wifi stop working suddenly, and know appears a X on the wifi icon, what may have happened?

    Hello,
    My macbook pro wifi stop working suddenly, and know appears a X on the wifi icon, what may have happened?
    Its seems to be the harware.

    Hello raphaelitajuba,
    The article linked below provides information regarding this indicator and steps that can help restore functionality to your MacBook Pro's Wi-Fi.
    AirPort has detected a problem with the driver or a necessary sub-system component, apply the latest manual AirPort software update or reinstall Mac OS X. If reinstalling Mac OS X does not correct the problem, take your computer to an authorized Apple service center.
    The AirPort status menu (AirPort Menu Extra) FAQ
    http://support.apple.com/kb/HT3821
    Cheers,
    Allen

  • JSP Page stops execution before the whole page is loaded

    Software
    Tomcat 5.5.2
    JDK 1.5
    Problem
    I have a JSP Page
    The problem is that it never gets finished off completely
    I mean the page is always half loaded I mean it stops execution of the JSP Page in between and it shows no exception in the console Window
    The page is not completely loaded
    I don't know what is the reason and so can't understand the reason behind that
    Thanks in advance
    CSJakharia

    Though Still I am confused why is this Page Buffer creating a sort of Exception.
    I mean it is just a limit that if page reaches to that limit it should send the data
    to client but what is the problem to Server that it stops sending the dataAn error is happening on your page.
    Basically whether or not you get an error screen depends upon when the error is generated. If the error happens before the buffer fills up, then it can cancel the output, and show the error page.
    If the buffer has already been filled up/flushed it can't cancel the output at this point. So it just stops sending.
    That explains why
    1 - page output cuts off halfway through
    2 - if you make a bigger buffer, it can display the exception page - because the error happens before the bigger buffer fills up.
    Regardless of whether the buffer was flushed or not, an error message would always be written to the Tomcat logs - check those for any problems.
    Cheers,
    evnafets

  • I own a HP Pavilion dv6915nr, it stopped working suddenly.

    Hello,
    HP Pavilion dv6915nr. 
    Windows Vista home premium 32-bit.
    I own a HP Pavilion dv6915nr, it stopped working suddenly last night. It was working perfectly, I was watching a video on HULU and I stepped away for 2 or 3 minutes, when I came back the screen was off. The laptop seemed to be on sleep, but when I tried to use it again it didn't do anything. When I try to turn it on the keyboard lights turn on for about 2 seconds, then it goes completely off and there is a faint cracking sound on the speaker bar. 
    I already tried taking the batteries off and using the AC/DC adapter only, it did not work. When I plug-in the AC/DC adapter the light around the power connector turns on.
    Hope someone could help me. Thanks.  

    Try a hard reset, works sometimes.Disconnect all external devices first.
    1-remove power cord and battery
    2-press power button for 30 seconds
    3-reinstall only power cord for first startup.
    4-power on
    ******Clicking the Thumbs-Up button is a way to say -Thanks!.******
    **Click Accept as Solution on a Reply that solves your issue to help others**

  • Laptop keyboard stopped working suddenly

    my laptop keyboard has stopped workin suddenly... i was entaered pasword and as the desktop opened the keyboard working stopped, my notebook is Pavillion-g6 2136tx and i've installed windows 8 os. please help me as soon as possible......

    Hi,
    Try the following.
    Shut down the notebook, unplug the AC Adapter and then remove the battery.  Hold  down the Power button for 30 seconds.  Re-insert the battery and plug in the AC Adapter.
    Tap away at the esc key as you start the notebook to see if this will launch the Start-up Menu - if it does, select f10 to enter the bios menu.  Press f5 to load the defaults ( this is sometimes f9, but the menu at the bottom will show the correct key ), use the arrow keys to select 'Yes' and hit enter.  Press f10 to save the setting and again use the arrow keys to select 'Yes' and hit enter.
    Regards,
    DP-K
    ****Click the White thumb to say thanks****
    ****Please mark Accept As Solution if it solves your problem****
    ****I don't work for HP****
    Microsoft MVP - Windows Experience

  • NB520 - Wifi stopped working suddenly on its own

    Hi,
    I bought my NB520 in Singapore.
    The WIFI was working properly for almost 3 years until recently I have this strange problem.
    It stopped working suddenly on its own last June for almost 2 weeks.
    Just when I was about to send it to the repair centre, it came back on again.
    But the WIFI comes on and off for a few more weeks before it stabalised.
    It works ok ever since, until 3 days ago it went off again like the last time.
    Usually, when I switch on the netbook, the WIFI indicator (red light) will come on within seconds.
    To use Bluetooth, I just right click on the Bluetooth icon and press "Enable Bluetooth Function" and Bluetooth will turn on.
    But now when I do that, it tells me to "Plug in Bluetooth device".
    Is this a hardware or software problem ?
    I spoke with a local technician but she is unsure too.
    Would appreciate if you can help me with this problem. Thanks in advance.
    Regards,
    Fionna

    > Is this a hardware or software problem ?
    This can be answered very easily recovering the notebook back to factory settings.
    But I guess this is not an option for you at this time. Isnt it?
    However, the issue you are talking in your post looks like the WLan isnt enabled and chosen properly.
    Usually you can use the FN + F8 key combination to enable and disable the WLan and BT module.
    Pressing both keys would switch between WLan and BT as well as disable and enable the modules.
    Did you test this in the past?
    In case the FN + F8 would not work as it should, I would recommend you to download the Wlan driver from Toshiba page released for this notebook series and to reinstall the Wlan driver.
    Your feedback would be greatly appreciated.

  • Integrated microphone stopped working suddenly on my HP i-7 DV6! I tried everything!

    Hi guys! Thanks to anyone seeing this. My laptop's integrated microphone stopped working suddenly. I have daily skype meetings and it worked perfectly fine but today it suddenly didn't work. I didn't make any significant changes before that.
    I tried uninstalling and installing the drivers from the website but when I uninstalled, the new drivers said that a device is missing. I cannot paste the error message exactly how is written for you because it is in greek. but the translation is that a device part is missing or something.
    after that I've done a system restore went back 4 days and I have now my drivers back but the microphone still isn't working.
    I figured out that if i plug my apple headphones i can hear audio but it doesnt detect my recording. (i dont know if it's supposed to anyway!
    Thanks in advance to anyone that might have a solution! 
    Windows 8
    HP Pavilion DV6-2150EV
    Product Number: VY101EA#B1A
    Serial No. 

    Thank you for this. You are amazing for trying to help me. I kept on not being able to find the solution for 2 days and no voice application worked until yesterday evening. I logged into an online shop and bought a headset costing £10. As long as I entered my details and pressed PAY, my girlfriend called me on skype and voila, she could hear me. I think there might be something wrong with the insides of my laptop! Might be a significant amount of dust and dirt.
    Thank you very much again. If this happens again I will read this post again carefully and get back to you.
    Best Regards
    Michalis Odysseos

Maybe you are looking for

  • Re : Client and project acquistation - SAP for Professional Services.

    Hi, Any one could please let me give the links for Client and project acquistation , It Service Management and Proposal and order Management scenarios in CRM for Professional Services IBU. Regards, Sathish Prabhu.

  • GUI_DOWNLOAD seperator

    Hi, I am using the gui_download to download the data and its being downloded but data should be downloaded by comma seperator . what is to be done for comma seprator format.Please reply

  • JDev 10g 'Code' menu

    Could anyone enlighten me as to how to make the 'Code' drop down menu appear in JDev 10g. I am running JDev 10g 9.0.5.0.0.1375 Preview and I had this menu at one stage but it seems to have disappeared. I've not knowingly chosen to hide it and can't s

  • I cant download ipod software

    I have an old ipod updater 2004 11 15. I cant update it because every time i go through the download, right at the end it says 'Error reading setup initialization file'! What does this mean? How do i fix it? If you know please explain it really simpl

  • FMS on CentOS

    Hello, I'm having trouble getting FMS2 installed on CentOS. I have looked all over for information, but can't seem to solve the problem. After a fresh install in everything appears to install OK, it says server started. So i think everything is worki