CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 5 of 5

Thread: Help Please

  1. #1
    Join Date
    May 2004
    Location
    Turkey/Kusadasi
    Posts
    3

    Help Please

    i am a new programmer in java and i am trying to execute a program...

    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;

    public class ButtonTest extends JFrame {
    private JButton plainButton, fancyButton;

    public ButtonTest()
    {
    super( "Testing Buttons");
    Container c= getContentPane();
    c.setLayout(new FlowLayout());

    // create buttons

    plainButton = new JButton( "Plain Button" );
    c.add(plainButton);

    Icon bug1 = new ImageIcon( "bug1.gif");
    Icon bug2 = new ImageIcon( "bug2.gif");
    fancyButton = new JButton( "Fancy Button", bug1);
    fancyButton.setRolloverIcon( bug2 );
    c.add( fancyButton);


    ButtonHandler handler = new ButtonHandler();
    fancyButton.addActionListener( handler );
    plainButton.addActionListener( handler );

    setSize( 275, 100 );
    show();

    }

    public static void main( String args[] )

    {
    ButtonTest app = new ButtonTest();

    app.addWindowListener(
    new WindowAdapter() {
    public void windowClosing( WindowEvent e )
    {
    System.exit (0);
    }
    }
    );
    }
    private class ButtonHandler implements ActionListener {
    public void actionPerformed(ActionEvent e )
    {
    ******* JOptionPane.showMessageDiaolog( null,
    "You pressed: " + e.getActionCommand());
    }
    }
    }


    This is the code...
    i am using Java Creator...The error message is


    "can not find symbol method ShowmessageDialog(<nulltype>,java.lang.String



    *******=ERROR LINE

    Thanks from now

  2. #2
    Join Date
    Sep 2004
    Posts
    83

    Re: Help Please

    Wrong number of parameters to showMessageDialog()

  3. #3
    Join Date
    May 2004
    Location
    Turkey/Kusadasi
    Posts
    3

    Re: Help Please

    thank a lot

  4. #4
    Join Date
    Feb 2003
    Location
    Sunny Glasgow!
    Posts
    258

    Re: Help Please

    it's also spelt wrong.

  5. #5
    Join Date
    Oct 2003
    Location
    .NET2.0 / VS2005 Developer
    Posts
    7,104

    Re: Help Please

    he means "wrongly"

    and incidentally; java is case sensitive. ShowmessageDialog and showMessageDialog are two different things
    "it's a fax from your dog, Mr Dansworth. It looks like your cat" - Gary Larson...DW1: Data Walkthroughs 1.1...DW2: Data Walkthroughs 2.0...DDS: The DataSet Designer Surface...ANO: ADO.NET2 Orientation...DAN: Deeper ADO.NET...DNU...PQ

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured