Why do I get the following exception when I press the cancel buuton?

My code is not complete as I am stubbing my code. Can someone tell me why i get the following exception
Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException
        at Phonebook.createNew(Phonebook.java:244)
        at Phonebook.actionPerformed(Phonebook.java:222)
        at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:19
95)
        at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.jav
a:2318)
        at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel
.java:387)
        at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:242
        at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonL
istener.java:236)
        at java.awt.AWTEventMulticaster.mouseReleased(AWTEventMulticaster.java:2
72)
        at java.awt.Component.processMouseEvent(Component.java:6038)
        at javax.swing.JComponent.processMouseEvent(JComponent.java:3265)
        at java.awt.Component.processEvent(Component.java:5803)
        at java.awt.Container.processEvent(Container.java:2058)
        at java.awt.Component.dispatchEventImpl(Component.java:4410)
        at java.awt.Container.dispatchEventImpl(Container.java:2116)
        at java.awt.Component.dispatchEvent(Component.java:4240)
        at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4322
        at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3986)
        at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3916)
        at java.awt.Container.dispatchEventImpl(Container.java:2102)
        at java.awt.Window.dispatchEventImpl(Window.java:2429)
        at java.awt.Component.dispatchEvent(Component.java:4240)
        at java.awt.EventQueue.dispatchEvent(EventQueue.java:599)
        at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThre
ad.java:273)
        at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.
java:183)
        at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThre
ad.java:173)
        at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:168)
        at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:160)
        at java.awt.EventDispatchThread.run(EventDispatchThread.java:121)in the following code whenever I press the cancel button in the part of code that tests fro when a user clicks the create button.
     Filename:     ContactsListInterface.java
     Date:           16 March 2008
     Programmer:     Yucca Nel
     Purpose:     Provides a GUI for entering names and contact numbers into a telephone directory.
                    Also allows options for searching for a specific name and deleting of data from the record
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import javax.swing.text.*;
import java.io.*;
import java.util.*;
import java.text.*;
public class Phonebook extends JFrame implements ActionListener
{ //start of class
     // construct fields, buttons, labels,text boxes, ArrayLists etc
     JTextPane displayPane = new JTextPane();
     JLabel listOfContacts = new JLabel("List Of Contacts");               // creates a label for the scrollpane
     JButton createButton = new JButton("Create");
     JButton searchButton = new JButton("Search");
     JButton modifyButton = new JButton("Modify");
     JButton deleteButton = new JButton("Delete");
     ArrayList fNameList = new ArrayList();
     ArrayList sNameList = new ArrayList();
     ArrayList hList = new ArrayList();
     ArrayList wList = new ArrayList();
     ArrayList cList = new ArrayList();
     public String name, surname, home, work, cell;
     // create an instance of the ContactsListInterface
     public Phonebook()
     { // start of cli()
          super("Phonebook Interface");
     } // end of cli()
     public JMenuBar createMenuBar()
     { // start of the createMenuBar()
          // construct and populate a menu bar
          JMenuBar mnuBar = new JMenuBar();                    // creates a menu bar
          setJMenuBar(mnuBar);
          JMenu mnuFile = new JMenu("File",true);               // creates a file menu in the menu bar which is visible
               mnuFile.setMnemonic(KeyEvent.VK_F);
               mnuFile.setDisplayedMnemonicIndex(0);
               mnuFile.setToolTipText("File Options");
               mnuBar.add(mnuFile);
          JMenuItem mnuFileExit = new JMenuItem("Save And Exit");     // creates an exit option in the file menu
               mnuFileExit.setMnemonic(KeyEvent.VK_X);
               mnuFileExit.setDisplayedMnemonicIndex(1);
               mnuFileExit.setToolTipText("Close Application");
               mnuFile.add(mnuFileExit);
               mnuFileExit.setActionCommand("Exit");
               mnuFileExit.addActionListener(this);
          JMenu mnuEdit = new JMenu("Edit",true);               // creates a menu for editing options
               mnuEdit.setMnemonic(KeyEvent.VK_E);
               mnuEdit.setDisplayedMnemonicIndex(0);
               mnuEdit.setToolTipText("Edit Options");
               mnuBar.add(mnuEdit);
          JMenu mnuEditSort = new JMenu("Sort",true);          // creates an option for sorting entries
               mnuEditSort.setMnemonic(KeyEvent.VK_S);
               mnuEditSort.setDisplayedMnemonicIndex(0);
               mnuEdit.add(mnuEditSort);
          JMenuItem mnuEditSortByName = new JMenuItem("Sort By Name");          // to sort entries by name
               mnuEditSortByName.setMnemonic(KeyEvent.VK_N);
               mnuEditSortByName.setDisplayedMnemonicIndex(8);
               mnuEditSortByName.setToolTipText("Sort entries by first name");
               mnuEditSortByName.setActionCommand("Name");
               mnuEditSortByName.addActionListener(this);
               mnuEditSort.add(mnuEditSortByName);
          JMenuItem mnuEditSortBySurname = new JMenuItem("Sort By Surname");     // to sort entries by surname
               mnuEditSortBySurname.setMnemonic(KeyEvent.VK_R);
               mnuEditSortBySurname.setDisplayedMnemonicIndex(10);
               mnuEditSortBySurname.setToolTipText("Sort entries by surname");
               mnuEditSortBySurname.setActionCommand("Surname");
               mnuEditSortBySurname.addActionListener(this);
               mnuEditSort.add(mnuEditSortBySurname);
          JMenu mnuHelp = new JMenu("Help",true);                    // creates a menu for help options
               mnuHelp.setMnemonic(KeyEvent.VK_H);
               mnuHelp.setDisplayedMnemonicIndex(0);
               mnuHelp.setToolTipText("Help options");
               mnuBar.add(mnuHelp);
          JMenuItem mnuHelpHelp = new JMenuItem("Help");          // creates a help option for help topic
               mnuHelpHelp.setMnemonic(KeyEvent.VK_P);
               mnuHelpHelp.setDisplayedMnemonicIndex(3);
               mnuHelpHelp.setToolTipText("Help Topic");
               mnuHelpHelp.setActionCommand("Help");
               mnuHelpHelp.addActionListener(this);
               mnuHelp.add(mnuHelpHelp);
          JMenuItem mnuHelpAbout = new JMenuItem("About");     // creates a about option for info about api
               mnuHelpAbout.setMnemonic(KeyEvent.VK_T);
               mnuHelpAbout.setDisplayedMnemonicIndex(4);
               mnuHelpAbout.setToolTipText("About this program");
               mnuHelpAbout.setActionCommand("About");
               mnuHelpAbout.addActionListener(this);
               mnuHelp.add(mnuHelpAbout);
          return mnuBar;
     } // end of the createMenuBar()
     // create the content pane
     public Container createContentPane()
     { // start of createContentPane()
          //construct and populate panels and content pane
          JPanel labelPanel = new JPanel(); // panel is only used to put the label for the textpane in
               labelPanel.setLayout(new FlowLayout());
               labelPanel.add(listOfContacts);
          JPanel displayPanel = new JPanel();// panel is used to display all the contacts and thier numbers
               setTabsAndStyles(displayPane);
               displayPane = addTextToTextPane();
               displayPane.setEditable(false);
          JScrollPane scrollPane = new JScrollPane(displayPane);
               scrollPane.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS); // pane is scrollable vertically
               scrollPane.setWheelScrollingEnabled(true);// pane is scrollable by use of the mouse wheel
               scrollPane.setPreferredSize(new Dimension(400,320));
          displayPanel.add(scrollPane);
          JPanel workPanel = new JPanel();// panel is used to enter, edit and delete data
               workPanel.setLayout(new FlowLayout());
               workPanel.add(createButton);
                    createButton.setToolTipText("Create a new entry");
                    createButton.addActionListener(this);
               workPanel.add(searchButton);
                    searchButton.setToolTipText("Search for an entry by name number or surname");
                    searchButton.addActionListener(this);
               workPanel.add(modifyButton);
                    modifyButton.setToolTipText("Modify an existing entry");
                    modifyButton.addActionListener(this);
               workPanel.add(deleteButton);
                    deleteButton.setToolTipText("Delete an existing entry");
                    deleteButton.addActionListener(this);
          labelPanel.setBackground(Color.red);
          displayPanel.setBackground(Color.red);
          workPanel.setBackground(Color.red);
          // create container and set attributes
          Container c = getContentPane();
               c.setLayout(new BorderLayout(30,30));
               c.add(labelPanel,BorderLayout.NORTH);
               c.add(displayPanel,BorderLayout.CENTER);
               c.add(workPanel,BorderLayout.SOUTH);
               c.setBackground(Color.red);
          // add a listener for the window closing and save
          addWindowListener(
               new WindowAdapter()
                    public void windowClosing(WindowEvent e)
                         int answer = JOptionPane.showConfirmDialog(null,"Are you sure you would like to save all changes and exit?","File submission",JOptionPane.YES_NO_OPTION);
                         if(answer == JOptionPane.YES_OPTION)
                              System.exit(0);
          return c;
     } // end of createContentPane()
     protected void setTabsAndStyles(JTextPane displayPane)
     { // Start of setTabsAndStyles()
          // set Font style
          Style fontStyle = StyleContext.getDefaultStyleContext().getStyle(StyleContext.DEFAULT_STYLE);
          Style regular = displayPane.addStyle("regular", fontStyle);
          StyleConstants.setFontFamily(fontStyle, "SansSerif");
          Style s = displayPane.addStyle("bold", regular);
          StyleConstants.setBold(s,true);
     } // End of setTabsAndStyles()
     public JTextPane addTextToTextPane()
     { // start of addTextToTextPane()
          Document doc = displayPane.getDocument();
          try
          { // start of tryblock
               // clear previous text
               doc.remove(0,doc.getLength());
               // insert titles of columns
               doc.insertString(0,"NAME\tSURNAME\tHOME NO\tWORK NO\tCELL NO\n",displayPane.getStyle("bold"));
          } // end of try block
          catch(BadLocationException ble)
          { // start of ble exception handler
               System.err.println("Could not insert text.");
          } // end of ble exception handler
          return displayPane;
     } // end of addTextToTextPane()
     // code to process user clicks
     public void actionPerformed(ActionEvent e)
     { // start of actionPerformed()
          String arg = e.getActionCommand();
          // user clicks create button
          if(arg.equals("Create"))
               createNew();
          if(arg.equals("Search"))
          if(arg.equals("Modify"))
          if(arg.equals("Delete"))
          if(arg.equals("Exit"))
     } // end of actionPerformed()
     // method to create a new contact
     public void createNew()
     { // start of create new contact()
          name = JOptionPane.showInputDialog(null,"Please enter the new contacts first name or press cancel to exit.");
          if(name == null)     finish();                         // if user clicks cancel
          if(name.length() <=0)
               JOptionPane.showMessageDialog(null,"You did not enter a valid name.\nPlease make sure you enter data correctly.","Error",JOptionPane.ERROR_MESSAGE);
               createNew();                                   // To return to the create method
          surname = JOptionPane.showInputDialog(null,"Please enter the new contacts surname or press cancel to exit.");
          if(surname == null)     finish();                         // if user clicks cancel
          if(surname.equals(""))
               int answer = JOptionPane.showConfirmDialog(null,"You did not enter a surname.\nAre you sure you wish to leave the surname empty?","No data entered",JOptionPane.YES_NO_OPTION);   // Asks if data was valid
               if(answer == JOptionPane.NO_OPTION)
                    surname = JOptionPane.showInputDialog(null,"Please enter the new contacts surname.");
          home = JOptionPane.showInputDialog(null,"Please enter the new contacts home number or press cancel to exit.");
          if(home == null)   finish();                    // if user clicks cancel
          work = JOptionPane.showInputDialog(null,"Please enter the new contacts work number or press cancel to exit.");
          if(work == null)     finish();                    // if user clicks cancel
          cell = JOptionPane.showInputDialog(null,"Please enter the new contacts cell number or press cancel to exit.");
          if(cell == null)     finish();                    // if user clicks cancel
     } // end of create new contact()
     // method to close applicatin
     public void finish()
     // method to search a contact
     public static void main(String[] args)
     { // start of main()
          // Set look and feel of interface
          try
          { // start of try block
               UIManager.setLookAndFeel("com.sun.java.swing.plaf.windows.WindowsLookAndFeel");
          } // end of try block
          catch(Exception e)
          { // start of catch block
               JOptionPane.showMessageDialog(null,"There was an error in setting the look and feel of this application","Error",JOptionPane.INFORMATION_MESSAGE);
          } // end  of catch block
          Phonebook p = new Phonebook();
          p.setDefaultCloseOperation(JFrame.DO_NOTHING_ON_CLOSE);
          p.setJMenuBar(p.createMenuBar());
          p.setContentPane(p.createContentPane());
          p.setSize(520,500);
          p.setVisible(true);
          p.setResizable(false);
     } // end of main()
} //end of class

Yucca wrote:
Line 244 is where I test for if the user actuallu entered a String at all. Is there an alternative way of writing that code?
if(name.length() <=0)
               JOptionPane.showMessageDialog(null,"You did not enter a valid name.\nPlease make sure you enter data correctly.","Error",JOptionPane.ERROR_MESSAGE);
               createNew();                                   // To return to the create method
Change:
if(name == null)     finish();     To
if(name == null) {
    finish();
    return;
}

Similar Messages

  • I get the following message when opening itunes: "the registry settings used by the itunes drivers for importing and burning cd's and dvd's are missing" how do I repair? downloading latest virsion of itunes doesn't work

    I get the following message when opening itunes: "the registry settings used by the itunes drivers for importing and burning cd's and dvd's are missing. Downloading the latest version does no fix the problem

    I'd start with the following document, with one modification. At step 12 after typing GEARAspiWDM press the Enter/Return key once prior to clicking OK. (Pressing Return adds a carriage return in the field and is important.)
    iTunes for Windows: "Registry settings" warning when opening iTunes

  • I have all my songs in my iTunes library on the computer, but when I press the button to sync it, it doesn't put the songs on my iPhone. I have songs from my iPod on here too.  How do I get it to put the songs on my iPhone?

    I have all my songs in my iTunes library on the computer, but when I press the button to sync it, it doesn't put the songs on my iPhone. I have songs from my iPod on here too. How do I get it to put the songs on my iPhone?

    Have you selected the music to sync?

  • Why does my screen come up dark when I press the camera icon?

    Why does my screen come up dark when I press the Camera icon?  I can neither take pictures nor look at the photos I have saved.

    Doulbe tab the home key to see the task bar.  Touch and hold any of those icons until they jiggle, then delete them by touching the minus sign.   Then reboot the pad by holding the sleep and home buttons until the apple logo appears.  Ignore the red slider.
    You either have another app open that is using the camera, or you just have too much stuff in memory.  The reset process should clear it up.

  • Every since I updated to the latest Camera Raw and Photoshop I have the following issue: when I finish the photo in Raw and bring it into Photoshop I have white squares in the Photo. If I crop the photo the white square disappears until I zoom to enlarge

    Every since I updated to the latest Camera Raw and Photoshop I have the following issue: when I finish the photo in Raw and bring it into Photoshop I have white squares in the Photo. If I crop the photo the white square disappears until I zoom to enlarge it then the white square reappears. I do not believe the squares are saved

    Does turning off »Use Graphics Processor« in the Performance Preferences and restarting Photoshop have any bearing on the issue?
    Please read this (in particular the section titled "Supply pertinent information for quicker answers"):
    http://forums.adobe.com/docs/DOC-2325

  • I can't get a capital c when I press the shift key, but I can get one with the with the caps lock key.  Help

    I can't get a capital c when I press the shift key, but I can get one with the with the caps lock key.  Help

    Hi
    How its going?
    I understand that you are not able to get the capital letter c.
    I want you to change the keyboard and if you have got the warranty please replace at no charge.
    Chetan

  • Is there a way to keep the screen from lighting up every time an email comes in, but still be able to see the email on the lock screen when you press the home button?

    Is there a way to keep the screen from lighting up everytime an email comes in, but still be able to see the email on the lock screen when you press the home button?  This is killing my battery, but also is kinda the whole point of the notification center in my mind.

    This is something I've been wondering. I am a bit like you, I like being able to have a glance at emails or Facebook updates without having to log in, and I think it would be great to be able to turn off the notification switching the screen on, especially for emails as I do get a lot, and Facebook, but I somehow doubt it is possible.
    I am currently monitoring how much this eats up my battery charge. On a normal day, after an overnight charge, I would probably still have 30%-40% left when I leave work in the evening. Today, I was down to 48% by lunchtime, where I've usually got a good 60-70% left... Might have to turn email notifications off on lock screen until it's possible to have them appearing in the list without flashing me...

  • My screen is stuck, it doesn't want to go back to the home page when I press the home button

    My screen is stuck, it doesn't want to go back to the home page when I press the home button. I have to power it off then turn it back on.

    808babe-
    One thing to try, is to reset (reboot) the iPad.  Hold both the Home and Sleep buttons for several seconds until the Apple logo appears.  Ignore the "Slide to power off" arrow.  The iPad will restart after a couple of minutes.  Resetting this way will not hurt anything, and sometimes clears up mysterious problems.
    If you can not do this reset, you may have a defective Home button.  Have an Apple Store Genius look at it, and you might get a new iPad.
    Fred

  • I get the following message when sending emails: The recipient "email address" was rejected by the server".  If I send the email to 3 people, one will be rejected and a different person will be rejected.  Any ideas?

    I get the following message when sending emails on my ipad:  The recipient "email address" was rejected by the server".  If I send the email to 3 people, one will be rejected.  If I send the same thing to the same 3 people a different one will be rejected.  Any ideas?

    Try a Reset [Hold the Home and Sleep/Wake buttons down together for 10 seconds or so (until the Apple logo appears) and then release. The screen will go blank and then power ON again in the normal way.] It is app and data safe!

  • TS2621 When I try to access my mail I just get frozen blank screen. Also on settings the screen freezes when I press the mail calendar  icon.

    I cannot access my mail. When I try I just get a blank divided screen which is frozen. Also in settings when  I press the mail calendar icon nothing happens except the settings screen freezes. Not very computer literate.

    Close the Mail app in the Task Bar and re-launch.
    Double-click the Home button to reveal Task Bar. Hold Mail app down for a second or two; tap the minus sign to close app.
    If it still doesn't work, try a reset.
    Hold the Sleep and Home button down (together) for about 10 seconds until you see the Apple logo. Ignore the red slider.

  • Why cant I create a form? When I press the + tab it instantly creates a new sheet

    Why can't I create a form? When I press the + tab it instantly creates a new sheet

    you must have a table with a header row for it to know what to make a form from. Thats the key, with a header row.
    Jason

  • Why do I get a popping sound when I press play and stop?

    I hope this is an easy answer for someone. When I press the play or stop button I get a loud popping noise (same with space bar). I want to use AA to play sound clips over on air radio and this would ne an obvious problem. Any suggestions would be greatly appreciated.

    It's almost certainly exactly that...I get the same effect when I do a quick playback via my laptop's internal card rather than hooking up my Firewire stuff.  Going through and laboriously adjusting things on the Windows Sound control panel will stop it--but, alas, watching a video or listening to some kind of playback on the net can instantly reset the internal card to something different again.
    Yet another reason to dislike Vista and W7.

  • I cannot delete unwanted app from my iPhone 5.  They wiggle and show the X but when I press the X it grays our but will not delete or go back to the home page when I press the home button

    The icons wiggle and show the x but they will not delete when I press the X.  Also the home button will not cancel the action.

    Try doing a hard reset: Press and hold both the Home button and the Sleep/wake button simultaneously for about 15 seconds and release when the Apple logo appears.
    After this, try again to delete the app.
    If that doesn't solve the issue, you could also try backing up the device and restoring the device as new.
    In that case, follow the steps in: http://support.apple.com/kb/HT4137
    NB: set up as a NEW device because a software issue will be in the backup. If the issue persists after restoring as new, you should offer the device for service.
    If you're not able to restore the device, this one might help: http://support.apple.com/kb/HT1808
    Using his article will erase everything on the device, so make sure you have a backup!
    Good luck

  • Why do I get a blue screen when I use the NIDAQ driver.

    I get IRQL_NOT_LESS_OR_EQUAL.
    Address fc792324 has base at fc6f8000 Nidaq32.sys and Address fc7028e3 has base at fc6f8000 Nidaq32.sys.
    The system is running on Windows NT 4.0. The application is built using Application Builder and LabView 5.1.1. The NIDAQ 6.9.0 is used.
    Please help me.

    uffe:
    You seek...Yoda...Help you...I...will..
    This is a kernel mode problem with your NIDAQ32.SYS driver. I believe
    that you can pretty much rule out problems with LV5.1.1 or app
    builder. Your problem
    You have run into a classic BSOD message. It may not always occur so
    it can be really frustrating to diagnose. There may be some
    workarounds you can implement at the application level but it still
    needs to be fixed at the kernel (O/S) level so you're going to need to
    contact NI.
    I've had this same problem error message in the past but not with DAQ
    cards. As I recall, in one case there was a problem with a spinlock
    in the SCSI driver (.sys) file which protected access to the hardware
    I was using.
    What is a spin lock? A spin lock is a special synchronization
    construct used by device driver developers to protect access to
    critical sections of their code usually for hardware access. It is
    the kernel mode equivalent to a VISA resource lock or a semaphore in
    LabVIEW.
    For more on spin locks see:
    http://msdn.microsoft.com/library/default.asp?url=/library/en-us/kmarch/hh/kmarch/k101_97hu.asp
    Work-around Possibility #1: Do you have two different parts of your
    code trying to access the DAQ card simultaneously? If so, providing
    your own VISA resource locks or semaphores at the application level
    may cure the problem even if the kernel mode driver is failing to
    protect access to the card like it should.
    Even if this fixes the problem PLEASE report it to NI so that they can
    fix it properly in the .sys file and let other users know that the
    workaround I suggested works.
    See:
    http://msdn.microsoft.com/library/default.asp?url=/library/en-us/network/hh/network/103ndisx_7mk2.asp
    Work-around Possibility #2: I don't know the details of setting up
    your DAQ card so if this question doesn't make any sense don't worry
    about it. Are you setting up the card with some empty array, zero
    memory size, or empty string value or something? I had this problem
    with a reflective memory card driver.
    Sometimes this can screw up a driver that isn't checking for this sort
    of thing with the result of it trying to reference a null ptr or
    something. Again, even if you fix the problem by error checking the
    values before you give them to the DAQ driver VI, make sure you tell
    NI about it.
    This explanation also jibes with what Microsoft has to say on
    IRQL_NOT_LESS_OR_EQUAL. See:
    http://msdn.microsoft.com/library/default.asp?url=/library/en-us/w2kmsgs/6077.asp
    3) There may be other explanations for your problem but these are two
    that I've run into personally. Try going to www.microsoft.com and
    doing a search on IRQL_NOT_LESS_OR_EQUAL if my two possibilities
    aren't the cause of your problem.
    4) Make sure you have the latest driver from NI for the NIDAQ. NI may
    have already fixed your problem in a later version of the NIDAQ
    driver.
    5) Also I would recommend making sure that you have the latest service
    pack (SP6A) installed or that you go ahead and upgrade to Win2000. As
    I recall when I had my one of my driver problems it was with an
    earlier SP release and upgrading SP's helped.
    6) If none of these suggestions help, you need to call NI help line
    (800-IEE-E488) and report this to see if they know about it so that
    they can give you a work around and see if they can recreate the
    problem and then fix it.
    Doug De Clue
    LabVIEW developer
    [email protected]
    uffe wrote in message news:<[email protected]>...
    > I get IRQL_NOT_LESS_OR_EQUAL.
    > Address fc792324 has base at fc6f8000 Nidaq32.sys and Address fc7028e3
    > has base at fc6f8000 Nidaq32.sys.
    >
    > The system is running on Windows NT 4.0. The application is built
    > using Application Builder and LabView 5.1.1. The NIDAQ 6.9.0 is used.
    >
    > Please help me.

  • Why do i get a white screen when i lift the display screen

    when i lift the screen to log in to an account a get a 'white screen'  the machine does not respond to any key(s).  If I held doden the power button, I can re-boot and all is fixed untill the next time....   Maybe once a month this happens?

    Hello, NickNE. 
    I would recommend trying the steps in the articles below as they may help with the display issue you are experiencing.
    Intel-based Macs: Resetting the System Management Controller (SMC)
    http://support.apple.com/kb/ht3964
    About NVRAM and PRAM
    http://support.apple.com/kb/ht1379
    Cheers,
    Jason H.

Maybe you are looking for

  • Gathering the data

    how do i make it so that when the radio button is clicked, a string of text is displayed below it? everytime i make an action listener for one of the radio buttons, my application won't run import java.awt.*; import java.awt.event.*; import javax.swi

  • How do I recover albums from a damaged library?

    The iPhoto Library Manager lists all of the albums I had in a library which iPhoto says is damaged or unreadable. Using the "Extract" selection under "File" in the Library Manager does not let me extract the albums as such. How can I extract the albu

  • XML Data Conversion Problem

    Hi, Am facing problem in flex that using web services am getting the data in xml format (below provided) am not able to provide the data from xml to datagrid. Am getting the data in datagridcolumn with the tag also. I need only data to be displayed w

  • Is CF10 working optimally

    CF10 tomcat logs indicate it is not working optimally. Is the INFO message following normal operation or something to worry about? Details: CFAdmin > Debugging & Logging > Log Files > coldfusion-error.log 16/05/2012 1:26:58 PM org.apache.catalina.cor

  • I've just set up Apple TV and inadvertently activated 'voice over'. I can't get rid of i. To save my sanity can someone please tell me how to?

    HI How  do I get rid of the 'voice over'? Thanks