No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
3 Posted Topics
[code]/*jesse johnson Help.java csc 110 August 25, 2004 */ import java.awt.*; import java.awt.event.*; import javax.swing.*; public class Help extends JApplet implements ActionListener { // GUI Buttons JButton ifButton , ifElseButton , switchButton , whileButton , doWhileButton , forButton, clearArea; JTextArea output; JLabel statusBar; public void init() { Container container = … | |
i want run an applet as an application and i want to run an application as an applet. i know there is a way to do it with only two lines of code i just can't figure it out. do any of you know how to do this? any help … | |
Re: first create a folder on the root of the c: drive called Java or something of that nature. Move any applications you build there. Make sure you have edited the system path to include the jdk. to compile : c:\Doc~>cd C:\Java c:\Java>javac Application.java to run: c:\Java>java Application |
The End.