Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9024037
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T05:54:31+00:00 2026-06-16T05:54:31+00:00

I get the error message: The method showInternalConfirmDialog(Component, Object, String, int, int) in the

  • 0

I get the error message:

The method showInternalConfirmDialog(Component, Object, String, int,
int) in the type JOptionPane is not applicable for the arguments (new
KeyListener(){}, String, String, int, int)

        public void keyTyped(KeyEvent e) {

        }

        public void keyReleased(KeyEvent e) {
            System.out.println("Key Released F1");
            if(e.getKeyCode()==KeyEvent.VK_F1) {



    /*here i get the error*/    int choice = JOptionPane.showInternalConfirmDialog(this, "Would you like to play the movie? " 
                        ,"Message", JOptionPane.WARNING_MESSAGE
                        , JOptionPane.OK_CANCEL_OPTION);

Any idea why I get this error?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-16T05:54:33+00:00Added an answer on June 16, 2026 at 5:54 am

    Assuming your extending a JFrame, JFrame doesn’t extend JComponent. I think this is the reason why it doesn’t work. AS a work around I suggest using a JPanel, this code compiled and worked.

    import java.awt.event.KeyEvent;
    import java.awt.event.KeyListener;
    import javax.swing.JFrame;
    import javax.swing.JOptionPane;
    import javax.swing.JPanel;
    
    public class CodeTester extends JFrame implements KeyListener
    {
        JPanel panel = new JPanel();
    
        public static void main(String[] args)
        {
            JFrame frame = new CodeTester();
            frame.setSize(400, 400);
            frame.setVisible(true);    
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        }
        public CodeTester()
        {
            addKeyListener(this);
            getContentPane().add(panel);        
        }
    
        public void keyTyped(KeyEvent e) {}
        public void keyPressed(KeyEvent e) {}
    
        public void keyReleased(KeyEvent e) 
        {
            int choice = JOptionPane.showInternalConfirmDialog(panel, 
                        "Would you like to play the movie? " 
                           ,"Message", JOptionPane.WARNING_MESSAGE
                        , JOptionPane.OK_CANCEL_OPTION);                
    
        }
    }
    

    Hope this helps.

    Edited I’ve just noticed I coded without the “F1” button condition implemented, I got rid just to simplify.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I get this error message in Eclipse: Access restriction: The type DirectoryWalker is not
Hot Code Replace Failed - add method not implemented. I get this error message
I get a error message the method ‘join’ is not supported in the below
I get an error message An object reference is required for the non-static field,
Im not really sure what im doing wrong. I get this error message No
I get this error message in LogCat: 06-25 15:17:34.495: E/AndroidRuntime(5891): java.lang.RuntimeException: Unable to start
I get this error message pageContext cannot be resolved but I have no variable
I get following error message, when I try to run git rebase -i for
I get this error message from a Ghostscript call: Error: /syntaxerror in -file- Operand
I get this error in my app { error: { message: Missing client_id parameter.,

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.