Search:

Type: Posts; User: KevinWorkman

Page 1 of 20 1 2 3 4

Search: Search took 0.14 seconds.

  1. Replies
    10
    Views
    1,229

    Re: Urgent question

    You main method is empty, so this program won't do anything. Why do you expect this to output anything?
  2. Replies
    10
    Views
    1,229

    Re: Urgent question

    What happened when you ran the code? Does it output what you expect?
  3. Replies
    10
    Views
    1,229

    Re: Urgent question

    When posting code, please use the highlight tags to preserve formatting. You can edit your post to add them.

    What does this code do? Does it do what you expect? What's missing from it?
  4. Replies
    10
    Views
    1,229

    Re: Urgent question

    You forgot to ask a question.
  5. Re: java program to execute an external application

    Just because something is possible in C# does not mean it's possible in Java.

    And it's **possible** in Java. It's just going to involve some native code.

    You apparently have your own ideas...
  6. Re: java program to execute an external application

    This isn't really a job for Java.

    You might be able to hack it using the Robot class, but going the way you're thinking about is going to require native code.
  7. Replies
    1
    Views
    1,416

    Re: Writing a pizza program

    When posting code, please use highlight tags to preserve formatting. Also, use proper indentation to really highlight what's going on. You have a few things that look like this:


    if(condition)...
  8. Replies
    21
    Views
    2,110

    Re: TIMER HELP PLEASE

    I'm not going to do your work for you. If you want the String formatted, you're going to have to format the String. Google is your friend there. Why don't you try something and post an MCVE...
  9. Replies
    32
    Views
    4,112

    Re: Multiplayer Support

    The best advice I can give you is that you might want to be a little more mindful of your attitude, and you might want to really reign in your expectations.

    The stuff you're talking about isn't...
  10. Replies
    21
    Views
    2,110

    Re: TIMER HELP PLEASE

    I have run your code.

    Where are you doing the formatting of the text so that it includes colons?
  11. Replies
    21
    Views
    2,110

    Re: TIMER HELP PLEASE

    I still don't really know what you're trying to do. Can you give us an example of how somebody would use your program?
  12. Re: Constantly changing color of World Map Image in Java

    http://stackoverflow.com/questions/26239332/make-a-map-of-the-world-with-constantly-changing-colors-in-java

    Although given the vagueness of the question, StackOverflow will probably delete it in...
  13. Replies
    21
    Views
    2,110

    Re: TIMER HELP PLEASE

    STOP YELLING

    What does this code do? What are you trying to accomplish exactly? What do you think the timer.replaceSelection() method does?
  14. Replies
    1
    Views
    698

    Re: Code for spliting the file

    What have you tried so far? What has google told you?
  15. Re: Need help with array list, scanner and dictonary file.

    More to the point: programming is at least 50% taking a step back, away from the computer, and breaking the problem down into smaller steps, then taking on each of those steps by using google,...
  16. Re: Need help with array list, scanner and dictonary file.

    You said it: helping him like this is a pretty bad idea. Why don't you have him make a post instead?
  17. Replies
    5
    Views
    1,233

    Re: Need help with homework (beginner)

    Which part of this is giving you trouble? What have you tried so far?
  18. Re: nested switch case (import java.io.*;)

    I'll get right on that!

    (We aren't going to do your homework for you.)
  19. Replies
    3
    Views
    1,218

    Re: main method

    https://www.google.com/webhp?q=java%20main%20string%20arguments

    What is "String args[]"? parameter in main method Java - Stack Overflow
    Java: Explanation of 'public static void main(String[]...
  20. Re: How to copy a java link same as a http link ?

    I've moved this thread to the Computer Support forum.

    What exactly do you mean by "javascript link"?
  21. Replies
    2
    Views
    835

    Re: Help! What is wrong with this code?

    You tell us. What does this code do? What did you expect it to do?
  22. Replies
    6
    Views
    984

    Re: begginer, cant fix bug

    I would guess that the actual problem is caused by the Tuna class not being imported, but without an MCVE we're just guessing.
  23. Replies
    6
    Views
    984

    Re: begginer, cant fix bug

    Is your error gone now?
  24. Replies
    6
    Views
    984

    Re: begginer, cant fix bug

    Your error says it all: the code has no idea what tuna is. Where is the tuna class defined? (Btw, it should be Tuna, not tuna).
  25. Re: Help with formatting and creating a user defined class.

    This is the first result for googling "java format number" and contains exactly what you're looking for: Formatting Numeric Print Output (The Java™ Tutorials > Learning the Java Language > Numbers...
Results 1 to 25 of 500
Page 1 of 20 1 2 3 4