Forum: Community Introductions
Mar 13th, 2006, 10:05 AM
|
|
Replies: 25
Views: 703
|
Forum: Java
Oct 3rd, 2005, 2:26 AM
|
|
Replies: 3
Views: 208
|
Forum: Java
Sep 30th, 2005, 12:44 AM
|
|
Replies: 0
Views: 187
Rectangle in EAST is partially visible
please see the following code:-
import javax.swing.*;
import java.awt.*;
import java.awt.geom.*;
public class ForumRect
{
public static void main(String[] args)
|
Forum: Java
Sep 29th, 2005, 6:14 AM
|
|
Replies: 5
Views: 313
|
Forum: Java
Sep 28th, 2005, 9:18 AM
|
|
Replies: 5
Views: 313
Narue, that was not my question! please go...
Narue, that was not my question! please go through the rule i have mentioned above, the code and then the question!
i want to know whether the rule is incorrect or am i making a mistake in...
|
Forum: Java
Sep 28th, 2005, 7:22 AM
|
|
Replies: 5
Views: 313
Protected features
The book Core-Java by Sun Microsystem says:-
A subclass methods can peek inside the protected field of superclass objects only, not of other super-class objects.
But I have an example below which...
|
Forum: C
Sep 27th, 2005, 11:04 PM
|
|
Replies: 6
Views: 350
|
Forum: Java
Sep 23rd, 2005, 9:13 AM
|
|
Replies: 0
Views: 150
repaint() and validate() - When to use?
i don't quite understand when to use validate() and when to use repaint().
the book "Core Java" says, when we add or remove components from a panel, we must call the repaint() method of the panel as...
|
Forum: Java
Sep 23rd, 2005, 8:44 AM
|
|
Replies: 4
Views: 198
|
Forum: Java
Sep 23rd, 2005, 8:40 AM
|
|
Replies: 3
Views: 165
as a beginner you should keep your CLASSPATH...
as a beginner you should keep your CLASSPATH environment variable empty.
setting the CLASSPATH variables makes sense only when you are treating some folders as the base for packages. you will learn...
|
Forum: Java
Sep 22nd, 2005, 9:19 AM
|
|
Replies: 1
Views: 170
Size of Button before show()
JButton button = new JButton("Click here");
System.out.println(button.getWidth() + ";" + button.getHeight());
The output is always 0;0
Someone in the Yahoo Programming:1 room told me, that we must...
|
Forum: C
Sep 20th, 2005, 9:48 AM
|
|
Replies: 8
Views: 244
|