import javax.swing.*;
public class GooeyGUI {
/**
* @param args
*/
public static void main(String[] args) {
JFrame frame1 = new JFrame("The Frame");
frame1.setSize(300, 300);
frame1.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
[COLOR="#FF0000"]frame1.setVisible(true); //this gives an UnsatisfiedLinkError[/COLOR] }
}
Why does the red line give that error?
All I'm trying to do is to make an empty JFrame.


Sign In
Create Account


Back to top











