|
-
November 8th, 2004, 03:35 PM
#1
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
-
November 8th, 2004, 04:55 PM
#2
Re: Help Please
Wrong number of parameters to showMessageDialog()
-
November 8th, 2004, 06:01 PM
#3
-
November 9th, 2004, 10:47 AM
#4
-
November 9th, 2004, 11:23 AM
#5
Re: Help Please
he means "wrongly"
and incidentally; java is case sensitive. ShowmessageDialog and showMessageDialog are two different things
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|