Ah, don't worry about that. i thought you were referencing a class, but you are using an IDE called JBuilder. My mistake.
Could you post your code up here? Remember to wrap it in [C0DE][/C0DE] tags.
import javax.swing.*;
import java.awt.*;
public class CreateGUI{
public void createAndShowGUI(){
JFrame myFram = new JFrame();
myFram.setDefaultCloseOperation(myFram.EXIT_ON_CLOSE);
Container contentPane = myFram.getContentPane();
JLabel myLable = new JLabel("hellow world");
contentPane.add(myLable);
myFram.pack();
myFram.setVisible(true);
}
}
public class TestGUI {
public static void main (String[] args){
CreateGUI myGui = new CreateGUI();
myGui.createAndShowGUI();
}
}
this is my simple programe.
[IMG]file:///C:/DOCUME%7E1/JANAKA%7E1/LOCALS%7E1/Temp/moz-screenshot.jpg[/IMG][IMG]file:///C:/DOCUME%7E1/JANAKA%7E1/LOCALS%7E1/Temp/moz-screenshot-1.jpg[/IMG][IMG]file:///C:/DOCUME%7E1/JANAKA%7E1/LOCALS%7E1/Temp/moz-screenshot-2.jpg[/IMG]the below is the error massage that i got
java.lang.NoSuchMethodError: main
Exception in thread "main"
but the most terrible problem is, when i copy these two classes into a new project that was created by same JBuilder IDE, it is running properly.
i want to find why is that
please help me
thanks