Hi I am new to this and am having trouble generating and on load event with the browser that java.net generates if someone could point me in the right...
Hello, can anyone suggest how I can make a diamond in # an empty one and a filled one? Thanks, Rose [Non-text portions of this message have been removed]...
Hello Everyone, I am very new to using Java Script on my site pages. One challeng I am facing now is how to place 2 different JS menus one one HTML page? I...
I want to display on the screen something like this. I want one filled and one empty (just the outline of a diamond! Hope this is more clear! # #### ######## ...
Hi all, I need help with the following issue: say I have a class that gets instantiated inside of another class; I want to know how can I access this outer...
Hi all, I am interested in using batik in my java project but i am having difficulty installing it. I have downloaded the batik-1.5.zip file from the web. ...
I have created a couple different classes, each containing several questions from a particular subject. I also have a source code file which I would like to...
hi i m zubair from pakistan and now i m doing my diploma in computer science ..now a days i m confused about my one project ..will any budyy tell me how cn i...
... You are going to need to use a loop, and a String that adds to it self. Something like (assuming you want the diamond to 7 long String blah = ""; for (int...
something like this, class c1 { class c2 { public void printClassName() { c1 obj=new c1(); obj.printClassName(); } } public void printClassName() { ...
I'm a student learning java and ran into this run time error in one of my projects. If any one could help- thank you. I have within the class NewSpecies...
That's why the gods invented the equals method in java.lang.Object If getName() returns a String then simply do: if ( getName().equals(nameSearch) ) { ...
The jar file containg the com.mysql.jdbc.Driver class is not inthe class path. There are 2 ways you can add them. Option 1: Use the -cp with the java command ...
Typo.... This C:\jdk1.3.1_01\bin>javac -cp <path_to_jar_file> testconnj.java should read as C:\jdk1.3.1_01\bin>java -cp <path_to_jar_file> testconnj ... ...
hi the jar file mysql-connector-java-3.0.9-stable-bin.jar i had put in C:\jdk1.3.1_01\jre\lib\ext immediately after dowloading the driver. When i tried also to...
I new to java, however from the code I’ve read you need to add a constructor in your inner class with a reference similar to the following: Class a { void...
I think you must use getName().equals(nameSearch) to solve the problem. This method compares the string for equality, while == compares two objects for...
... That only works for generic data ... You are probably better off passing information to class C2 from c1 instead of making a second instance of c1 Adam...
Hi Adam, What I am trying to do is to have a method in class b that will use the class name of class a. Basically I am writing some kind of a logger class that...
Hi, everybody! I have some troubles with JBuilder! I programmed in C++ Builder, but now I have to use JBuilder... the question is: I wanna know how can I ...
Are IBM Websphere4.04 and WebSphere5.0 (with mandatory patch, patch number PQ73966) available for Sun Solaris 8 and HP-UX 11i ? Also I need to know that,...
Hi Venkat, I was not talking about inner classes. Just 2 independent classes linked by a HAS-A (composition) relationship. Regards, Radu ... question ... ...