|
You are trying to create a new object from JDialog class. But you have a new class which extends JDialog! You should use the name of your class there. And make sure that these two classes are in the same package. If not you need to add correct import statements to your JFrame class so that JVM can find your JDialog class.
|