11-11-08, 10:37 AM
|
#1
|
Gender: Male
Join Date: Oct 2008
Location: Michigan
Posts: 505
|
Basic Frame Creation.
Here ya go 
If you have any questions let me know.
All this is a frame with a title.
Code:
import javax.swing.*;
import java.awt.*;
public class Frame {public static void main(String[] args) {String title = "your title";
JFrame main = new JFrame(title)
main.show() } }
Now just to let you know, all that is is an empty frame with a name. You could add some buttons and menus if you wanted. If you wanna look into it more look into the java.awt.event package, the javax.swing package and the java.awt package.
Michael could you fix the title please specify its java for me
_______________________________
|
|
|