I worked a bit more on my program, but I'm having trouble making the scientific buttons work. Could you guys help me with those actions? Below is the code for the program. Thanks a lot.
Hi everybody, I'm trying to make this calculator program work as an applet AND as an application. I tried using:
in many different ways, but it didn't work. Can sombody help me make it work? Below is the source code for my calculator program. Thanks in advance, -Fede ps-You can also e-mail me at [email protected]
thanks a lot carl! i made that work, but now the jtextarea is not working. is giving me this error:
/tmp/26198/CircleTest.java:48: cannot resolve symbol symbol : method showMessageDialog (,javax.swing.JTextArea,int) location: class javax.swing.JOptionPane JOptionPane.showMessageDialog( null, output, JOptionPane.INFORMATION_MESSAGE ); ^ 1 error and this is the code i have:
Hi, I'm new with Java, and I need help with a program that I wrote. It needs to prompt the user for the x value, the y value, and the radius value, and then display the info in a JTextArea. Is giving me the following error:
I don't know what I'm doing wrong. I would really appreciate your help with this. This is the code i have:
Hi, I'm new with Java, and I need help with a program that I wrote. It needs to prompt the user for the x value, the y value, and the radius value, and then display the info in a JTextArea. Is giving me the following error:
I don't know what I'm doing wrong. I would really appreciate your help with this. This is the code i have:
Hi, I'm new with Java, and I need help with a program that I wrote. It needs to prompt the user for the x value, the y value, and the radius value, and then display the info in a JTextArea. Is giving me the following error:
I don't know what I'm doing wrong. I would really appreciate your help with this. This is the code i have:
Hi, I'm new with Java, and I need help with a program that I wrote. It needs to prompt the user for the x value, the y value, and the radius value, and then display the info in a JTextArea. Is giving me the following error:
I don't know what I'm doing wrong. I would really appreciate your help with this. This is the code i have:
could somebody give me a detailed explanation of how this tictactoe game program works? thanks you. this is the code: import javax.swing.*; import java.awt.*; import java.applet.*; public class TicTac extends JApplet { public void init() { // declaration aand created array int Array[] = new int[8]; String input1; String input2; int choice1 = 0; int choice2; for(int i=0; i < Array.length; i++) Array = 0; while (choice1 == 0) { input1 = JOptionPane.showInputDialog ("Please select your symbol\n"+ "1= O \n"+ "2= X \n"); if (input1.equals("1")) choice1 = 1; if (input1.equals("2")) choice1 = 2; } //converts string to integer //choice1 = Integer.parseInt( input1 ); } // draws the TicTacToe Board... public void paint(Graphics g) { Dimension d = getSize(); g.setColor(Color.blue); int sz = 0; if (d.height/4 - 10 < d.width/4) sz = d.height / 4; elsesz = d.width / 4; for (int j=0; j < 4; j++) { g.drawLine(10,sz*j+10,sz*3+10,sz*j+10); g.drawLine(j*sz+10,10,j*sz+10,sz*3+10); } g.setColor(Color.black); g.drawRect(9,9,sz*3+2,sz*3+2); } //end of paitn method }// end of class
Hi, I'm new with Java, and I need help with an assigment about copying arrays, I was wondering if anyone could help me out. I need to design a program that asks user to enter name and then displays it dysplaying the index and value, like:
I would really appreciate your help. You can reply here or e-mail me at [email protected] Thanks in advance, Federico [ October 14, 2003: Message edited by: federico elbl ]