January 4th, 2013 02:19 AM
solved that problem with '\\'
January 3rd, 2013 08:40 AM
for (int i = 0; i <= c_path_name.length-1; i++) {
if(c_path_name[i] == '\') {
c_path_name[i] = '/';
}
}
Can someone explain to me why this won't compile?...
December 29th, 2012 10:27 AM
3077330775
I get this 2 warnings when i run Eclipse. Why are they popping up and what can i do to fix it?
December 29th, 2012 09:49 AM
aha, now it works. Thanx.
December 28th, 2012 03:53 PM
Hi,
Can anyone explain why is this error?
http://i50.tinypic.com/2m67c75.png
April 28th, 2012 12:39 PM
so actually the JVM calls these functions?
April 28th, 2012 09:03 AM
How is it possible that we never call actionPerformed and Run functions? We just declare them.
April 28th, 2012 07:48 AM
oh, i understand. I created 2 variables with the same name(JButton gmPlus) - inside the function and
...
April 28th, 2012 06:55 AM
Can you explain this a little bit more. What should i fix in this code in order for this program to work?
April 28th, 2012 05:15 AM
I dont know why are all conditions in all IF statesmant always negative(false)?
April 27th, 2012 01:27 PM
This is a calculator, I didnt make any notes becase i thought it is an easy program.
import javax.swing.*;
import java.awt.*;
import java.awt.Event.*;
import java.awt.event.ActionEvent;...