[x]
Posted via EE Mobile

Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again.

Question
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

5.0

NullPointerException in my code...

Asked by yabelson in Java Programming Language

Tags: nullpointerexception, gui, intellij, idea

hi.
i used the GUI Form builder (working with IntelliJ IDEA) i managed to create the GUI i want.
now, i inserted all the elements to the code, but when i run it i get this error :

Exception in thread "main" java.lang.NullPointerException
      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
      at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
      at java.lang.reflect.Method.invoke(Unknown Source)
      at com.intellij.rt.execution.application.AppMain.main(AppMain.java:90)

Process finished with exit code 1


my code looks like this :** there is also a constructor for all the components.


    public void main(String[] args){

         ImageIcon PointerLogo = new ImageIcon("g:\\temp\\PointerLogo.jpg");
       
        JFrame MainFrame = new JFrame("Loop SMS    Ver. 1.01");
        MainFrame.setIconImage(PointerLogo.getImage());
        MainFrame.setLocationRelativeTo( null );
        MainFrame.add(MainFramePanel);
        //MainFrame
        MainFramePanel.add(DLPanel);
        MainFramePanel.add(ULPanel);
        // MainFrame Panel

        ULPanel.add(DecriptRecievedPanel);
        ULPanel.add(RecievedMessagePanel);

        DecriptRecievedPanel.add(RecCommandPanel);
        RecCommandPanel.add(RecCommandLabel);
        RecCommandLabel.add(RecCommandText);
        DecriptRecievedPanel.add(RecievedUIDPanel);
        RecievedUIDPanel.add(RecUIDLLabel);
        RecievedUIDPanel.add(RecUIDText);
        DecriptRecievedPanel.add(RecievedDatePanel);
        RecievedDatePanel.add(RecDateLabel);
        RecievedDatePanel.add(RecDateText);
        RecievedDatePanel.add(RecTimeLabel) ;
        RecievedDatePanel.add(RecTimeText);
        RecievedMessagePanel.add(RecievedMessageLabel);
        RecievedMessagePanel.add(RecievedMessageText);
        //ULPanel

        DLPanel.add(DLFramePanel);
        DLFramePanel.add(MessageSendText);
        DLFramePanel.add(ConvertedMessagePanel);
        ConvertedMessagePanel.add(ConvertedLabel);
        ConvertedMessagePanel.add(ConvertedMessageText);
        DLFramePanel.add(SendButton);
        SendButton.addActionListener(this);
        DLFramePanel.add(ConvertionPanel);
        ConvertionPanel.add(ConvertButton) ;
        ConvertButton.addActionListener(this);
        DLFramePanel.add(DateNTimePanel);
        DateNTimePanel.add(DateLabel);
        DateNTimePanel.add(DateField);
        DateNTimePanel.add(TimeLabel);
        DateNTimePanel.add(TimeField);
        DLFramePanel.add(UIDPanel);
        UIDPanel.add(CommandComboBox);
        UIDPanel.add(CommandLabel);
        UIDPanel.add(InsertUIDLabel);
        UIDPanel.add(UnitIDInsertField);
        // DLPanel
        MainFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        MainFrame.pack();
        MainFrame.setVisible(true);
    }


can someone guide me to my error or help me fox my code ?
[+][-]11/16/06 06:39 AM, ID: 17956035Accepted Solution

View this solution now by starting your 30-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

About this solution

Zone: Java Programming Language
Tags: nullpointerexception, gui, intellij, idea
Sign Up Now!
Solution Provided By: eoin2000
Participating Experts: 4
Solution Grade: A
 
[+][-]11/15/06 02:32 PM, ID: 17951258Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]11/15/06 08:50 PM, ID: 17953450Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]11/15/06 08:55 PM, ID: 17953467Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]11/15/06 08:57 PM, ID: 17953475Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]11/15/06 09:01 PM, ID: 17953498Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]11/15/06 09:18 PM, ID: 17953560Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]11/15/06 09:26 PM, ID: 17953587Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]11/15/06 09:29 PM, ID: 17953595Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]11/15/06 09:46 PM, ID: 17953665Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]11/15/06 10:38 PM, ID: 17953817Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]11/15/06 10:41 PM, ID: 17953825Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]11/15/06 10:48 PM, ID: 17953848Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]11/15/06 10:52 PM, ID: 17953856Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]11/16/06 05:08 AM, ID: 17955395Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]11/16/06 09:52 AM, ID: 17958123Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]11/16/06 10:25 PM, ID: 17963093Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]11/17/06 03:02 PM, ID: 17969310Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
 
Loading Advertisement...
20091111-EE-VQP-92