Does somebody know how to make massage box in Jframe?

Does somebody know how to make massage box in Jframe?
[67 byte] By [zick] at [2007-9-26 1:21:40]
# 1

Hello!

I am also quite new to Java... and am happy to find forum like this...

if I am not mistaken, if you mean message dialog box...

I tried this... but it's probably not what you're looking for...

import javax.swing.*;

import java.awt.*;

import java.awt.event.*;

public class MyTest extends JFrame {

public MyTest() {

super( "Message Dialog Box Test" );

JOptionPane.showMessageDialog( MyTest.this, "Have fun!", "MyTest",

JOptionPane.INFORMATION_MESSAGE );

}

public static void main( String args[] ) {

MyTest app = new MyTest();

app.addWindowListener(

new WindowAdapter() {

public void windowClosing( WindowEvent e ) {

System.exit( 0 );

}

}

);

}

}

zawaprz at 2007-6-29 0:57:40 > top of Java-index,Archived Forums,New To Java Technology Archive...
# 2
HiThanks I figured it out
zick at 2007-6-29 0:57:40 > top of Java-index,Archived Forums,New To Java Technology Archive...
# 3
Do you mind than to share with me what did you figure out? I've bet my answer was not quite to the point. I'd like also to know that solution :)
zawaprz at 2007-6-29 0:57:40 > top of Java-index,Archived Forums,New To Java Technology Archive...