Error message ?
I have a java program called DrawGUI, when I compile it, it has no errors.
I have another java program called GradesGUI as follows:
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
class GradesGUI {
public static void main(String args[])
{
DrawGUI x = new DrawGUI();
}
}
Yet, when I compile it I get the error "cannot resolve symbol" pointing to the first DrawGUI id ?

