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
Re: [QUOTE=nanosani]I have made a hospital management system ....its GUI is creating some problems .... I have a container at the top level with Borderlayout ... a combo box is on its north ... and a JPanel is on its center. Combo box contains two items ... Doctor and Patient. the … | |
Re: // Illustrates the use of the Color class import java.applet.*; import java.awt.*; import java.awt.event.*; public class Colors extends Applet implements ActionListener { ColorControl[] control = new ColorControl[3]; public Colors() { setLayout( new GridLayout(6,1) ); control[0] = new ColorControl( "Red" ); control[1] = new ColorControl( "Green" ); control[2] = new ColorControl( … | |
Re: I think if you changed "grocerystore.java" to "grocerystore.class" you might get it to display in your browser. [QUOTE=Defiledgrave]<html> <body> <applet code="grocerystore.java"width="250"height="250"> </applet> </body> </html> that is the html code I'm using.....it's a simple webpage used to just test the code I'm getting a cast exception on line 30 and 31 … |