T
Tom Wouters
Hello
i got a simpel program with a main methode but it wont execute
import javax.swing.*;
public class Frame_01{
public static void main(String[] args){
JFrame frame = new Jframe("Mijn eerste JFrame");
frame.setVisible(true);
}
}
I don't know why it doesn't do it
TIA
Tom
i got a simpel program with a main methode but it wont execute
import javax.swing.*;
public class Frame_01{
public static void main(String[] args){
JFrame frame = new Jframe("Mijn eerste JFrame");
frame.setVisible(true);
}
}
I don't know why it doesn't do it
TIA
Tom