Search Results

Showing results 1 to 40 of 68
Search took 0.02 seconds.
Search: Posts Made By: jasimp
Forum: DaniWeb Community Feedback 7 Days Ago
Replies: 8
Views: 337
Posted By jasimp
It's quite old.
Forum: Java 10 Days Ago
Replies: 11
Views: 316
Posted By jasimp
You never instantiate an object with the name br.
Forum: Geeks' Lounge 10 Days Ago
Replies: 23
Views: 861
Posted By jasimp
I see myself in there!!! ;)
Forum: Java 10 Days Ago
Replies: 2
Views: 197
Posted By jasimp
Being familiar with the Java API, available online here (http://java.sun.com/javase/6/docs/api/), is imperative if you plan to program any further in Java. Another fantastic resource is...
Forum: DaniWeb Community Feedback 18 Days Ago
Replies: 36
Views: 2,649
Posted By jasimp
Actually, I was the first abuser of the voting system. I down voted every single post by The Mad Hatter. So...way to be wrong ;)
Forum: DaniWeb Community Feedback 30 Days Ago
Replies: 91
Views: 6,931
Posted By jasimp
/Sigh
NoScript+AdblockPlus, USE THEM!!. I haven't seen these "new buttons" you guys are talking about, and it takes less than 2 seconds for all 30 posts on this page to load.

EDIT: Less than 1.5...
Forum: Java 34 Days Ago
Replies: 10
Views: 508
Posted By jasimp
This forum has no such policy, in fact you can reply to threads from over 5 years ago...if you really wanted too. Thank you for posting the solution to your problem, and for marking the thread as...
Forum: DaniWeb Community Feedback Oct 19th, 2009
Replies: 6
Views: 727
Posted By jasimp
Hehe, I remember when you were called that, I used to wonder if you had warts everywhere ;)
Forum: Java Oct 12th, 2009
Replies: 2
Views: 259
Posted By jasimp
Step 1: Learn Java.
Step 2: Google.
Forum: DaniWeb Community Feedback Oct 4th, 2009
Replies: 43
Views: 4,014
Posted By jasimp
I just don't understand the point of it. People like AD complained because they couldn't leave neg rep without destroying someone's rep. So, instead of just having an option for no rep change when...
Forum: DaniWeb Community Feedback Oct 4th, 2009
Replies: 91
Views: 6,931
Posted By jasimp
Sorry to be a dark cloud in all this but...

The new voting thing is terrible. As others have said it adds so much clutter to the design, its more information than anyone needs to know, its...
Forum: DaniWeb Community Feedback Oct 3rd, 2009
Replies: 9
Views: 877
Posted By jasimp
My favorite forums has been there for awhile now.

I think the rep counters need to be reduced in size, or redesigned, they don't fit well with the rest of the page.
Forum: DaniWeb Community Feedback Sep 24th, 2009
Replies: 18
Views: 858
Posted By jasimp
While this thread is on the topic of reputation:

I like that posts that receive lots of positive (and perhaps negative although I haven't come across that) have more than one green dot next to...
Forum: Java Sep 22nd, 2009
Replies: 4
Views: 400
Posted By jasimp
Your link doesn't work, you have an extra http://

Here (http://java.sun.com/docs/books/tutorial/uiswing/components/combobox.html) is a working version of your link :)
Forum: Java Sep 16th, 2009
Replies: 4
Views: 302
Posted By jasimp
No. Put some effort into the project yourself. We can help you with your program if you get stuck. You will never learn if people do the work for you.
Forum: Java Mar 16th, 2009
Replies: 2
Views: 1,418
Posted By jasimp
boolean display = A.B(inputInfo);

The return statement you used is legal. You can return false, true, or a boolean variable when using a boolean method. When you call A.B() that line of code...
Forum: Java Mar 16th, 2009
Replies: 11
Views: 1,205
Posted By jasimp
Why would you do this in your GeometricObject class? Just create a driver class, here's the one I made.
public class Tester {
public static void main(String[] args) {
Triangle tri = new...
Forum: Geeks' Lounge Mar 16th, 2009
Replies: 64
Views: 3,737
Posted By jasimp
Maybe you should lobby to follow up on Rashakil's suggestion, Day Care (http://www.daniweb.com/forums/thread77095.html), but instead of creating a new forum, just rename this one :)
Forum: Java Mar 15th, 2009
Replies: 11
Views: 1,205
Posted By jasimp
public Triangle(double s1, double s2, double s3)
{
this.side1=s1;
this.side2=s2;
this.side3=s3;
}



public Isosceles( double EQside, double otherside)
Forum: Java Mar 14th, 2009
Replies: 8
Views: 582
Posted By jasimp
You need to post the section of code that is giving you trouble here, not the whole thing, only where you are getting an error (don't forget to tell us what error/exception you are getting.) A great...
Forum: Java Mar 13th, 2009
Replies: 12
Views: 774
Posted By jasimp
He means do it yourself. Once you start writing and come across a concept you don't understand, ask for a little help (in the correct forum.)
Forum: Geeks' Lounge Dec 3rd, 2008
Replies: 41
Views: 3,573
Posted By jasimp
Stevie Wonder said it best--"Music is a world within itself, it's a language we all understand."
Forum: Java Nov 29th, 2008
Replies: 12
Views: 995
Posted By jasimp
And I want a billion dollars :-/
Forum: Java Nov 11th, 2008
Replies: 2
Views: 504
Posted By jasimp
Easiest way to do what? You haven't told us what you need help on (besides the vague "I want to add some more features"), we have no clue where your at with implementing these "new features" and we...
Forum: Geeks' Lounge Nov 8th, 2008
Replies: 10
Views: 932
Posted By jasimp
I'll supply the tinfoil for a hat making party ;)
Forum: Java Oct 29th, 2008
Replies: 4
Views: 2,116
Posted By jasimp
Just create a new color using your values. I added the line of code into your try statement.

try
{
red = Integer.parseInt(redText.getText());
green =...
Forum: Java Oct 22nd, 2008
Replies: 12
Views: 1,693
Posted By jasimp
Try saving it to a .png instead of a .gif, that should (hopefully) work.
Forum: Java Oct 21st, 2008
Replies: 2
Views: 383
Posted By jasimp
I would recommend the fifth edition of Java in a Nutshell (http://www.amazon.com/Java-Nutshell-5th-David-Flanagan/dp/0596007736/ref=sr_1_3?ie=UTF8&s=books&qid=1224622812&sr=1-3) more than the fourth.
Forum: Java Oct 20th, 2008
Replies: 4
Views: 491
Posted By jasimp
Have you done any programs before this one? You need to declare main() as

public static void main(String[] args){

}

You never ended your Inventory class, it needs its corresponding...
Forum: Java Oct 19th, 2008
Replies: 4
Views: 640
Posted By jasimp
What you could have done is marked the thread as solved, that way everyone would know it was solved and would not read the whole thing. Or, if you really wanted to be helpful you could have put the...
Forum: Java Oct 14th, 2008
Replies: 8
Views: 628
Posted By jasimp
I would suggest reading this (http://java.sun.com/docs/books/tutorial/rmi/index.html) tutorial and maybe do a little more searching if you still don't understand it. If you don't understand it after...
Forum: Java Oct 11th, 2008
Replies: 2
Views: 1,029
Posted By jasimp
The error is pretty self explanatory. You never gave the variables a value.

float num11, num22;That creates them but it does not initialize them with a value. If you give them a starting value,...
Forum: DaniWeb Community Feedback Sep 29th, 2008
Replies: 2
Views: 1,080
Posted By jasimp
If you post your questions in the correct forum, without using chat room language, sure :) People will try to answer your questions and help you.
Forum: Geeks' Lounge Sep 3rd, 2008
Replies: 13
Views: 1,274
Posted By jasimp
Some people should learn how periods work.
Forum: Geeks' Lounge Aug 31st, 2008
Replies: 55
Views: 4,747
Posted By jasimp
>>>Why should we believe you? - John A

:) This is good rep on a rep comment.
Forum: DaniWeb Community Feedback Aug 25th, 2008
Replies: 20
Views: 2,844
Posted By jasimp
Suppose a really great programmer or someone who knows XP and hardware inside and out, or someone like crunchie who is a genius when it comes to virus removal, joins Daniwed, and they are forced to...
Forum: Java Aug 23rd, 2008
Replies: 1
Views: 642
Posted By jasimp
Show some effort by posting your code so we can see what you have done. Do what the question asks, learn how to write and read files by searching for tutorials. Google is your friend.
Forum: Post your Resume Aug 22nd, 2008
Replies: 4
Views: 665
Posted By jasimp
It was in the wrong forum, you self-advertised and you used ppl instead of people which violates no "chatroom language". Read the rules.
Forum: DaniWeb Community Feedback Aug 20th, 2008
Replies: 24
Views: 2,545
Posted By jasimp
Good, that is the first step, only eleven more to go ;)
Forum: Java Aug 19th, 2008
Replies: 1
Views: 513
Posted By jasimp
1 second Google search
http://www.javaworld.com/javaworld/jw-08-1996/jw-08-gc.html
http://java.sun.com/docs/books/jvms/first_edition/html/Overview.doc.html (Scroll down to find the paragraphs...
Showing results 1 to 40 of 68

 


About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC