Search:

Type: Posts; User: Sterzerkmode

Search: Search took 0.08 seconds.

  1. Replies
    1
    Views
    2,068

    delimiter question

    I have a file that contains

    1 2 3
    4 5 6
    7 8 9

    I have a scanner that reads it, puts it into a String, and then attempts to use the split method to tokenize it. The problem is that it isn't...
  2. Replies
    5
    Views
    2,658

    Re: Swing Timers

    Okay well I had to where every x amount of time it would compare, and a new word would put up. But ideally, I'd like to set the amount of time between phrase changes and compare the new words after...
  3. Replies
    5
    Views
    2,658

    Re: Swing Timers

    Ah okay I got it working. I read your post wrong the first time so it wasn't really working for me the first time I tried. But it works now. Thanks a lot for the help!
  4. Replies
    5
    Views
    2,658

    Re: Swing Timers

    Well I got the program to start looping with Thread.sleep(5000). The problem I am having now is that when the JTextFields come up, I am unable to set my cursor there. It's like grabFocus() just isn't...
  5. Replies
    5
    Views
    2,658

    Swing Timers

    Hi I have a program that should bring up two JTextFields, one with a phrase in it and the other empty. I want it to then wait 5 seconds to give the user time to enter in the translated answer. Then...
  6. [SOLVED] Modification of current program to activate notification pop up

    Hi. Basically, I want my program, if minimized or not the like...active window, to pop-up (I'm pretty sure that is not the technical term, but I don't know what it is). Whenever a new word/phrase...
  7. Replies
    4
    Views
    11,837

    [SOLVED] Re: JTextField not visible?

    Awesome! With an added Thread.sleep(..) in the if/else statement the program is working exactly as I wanted it to. Thanks.
  8. Replies
    4
    Views
    11,837

    [SOLVED] Re: JTextField not visible?

    Okay, I added that into the constructor and it showed up. The problem I'm having now though is that when I type in a translation, and hit enter, nothing happens. Also, the JTextField is very smal.;...
  9. Replies
    4
    Views
    11,837

    [SOLVED] JTextField not visible in swing

    I want my program to display a text field. The text will be a random spanish word or phrase. Then I enter in the correct english translation. I want it to wait for 5 seconds after I enter text. Then...
  10. Re: Basic Class Interaction Question

    Yes, I want Function to take an array list of Terms. But I want the Terms to be predefined by whatever the user inputs into the command line (or some other way! I just only know about the command...
  11. How to link two classes in java to use it method

    These are my two classes --



    import java.util.ArrayList;
    /*/
    *
    * Will contain methods such as
    * boolean isAFunction(), takeDerivative...(), takeIntegral...()
    * takeDerivative...()...
  12. Which collection is best to do mathematical operation on it?

    I want to make a program to take derivatives of a given function. I want to take the function from the command-line, analyze the function and separate the terms, take the derivative of each one, and...
Results 1 to 12 of 12