Search:

Type: Posts; User: Norm

Search: Search took 0.13 seconds.

  1. Replies
    31
    Views
    4,356

    Re: n00b asking jspinner question

    I think you can unselect when a selection has been made. See the caretlistener and use the caret setting methods.
  2. Replies
    31
    Views
    4,356

    Re: n00b asking jspinner question

    What is the difference between an accidental selection and a desired selection?
  3. Replies
    31
    Views
    4,356

    Re: n00b asking jspinner question

    Is your problem that you don't want the contents to be selected?
    You can probably add a listener and have it turn off the selection.
  4. Replies
    31
    Views
    4,356

    Re: n00b asking jspinner question

    Not sure what highlighting means. Many components use various visual changes to show change in state. what state does the double click change the textfield to? There might be ways to change the...
  5. Replies
    31
    Views
    4,356

    Re: n00b asking jspinner question

    I'll see you when you get back.
  6. Replies
    31
    Views
    4,356

    Re: n00b asking jspinner question

    The code is using an index that is past the end of the array.
    Remember that array index values are 0 based and range from 0 to the length-1 of the array.

    To keep this from happening, do not use...
  7. Replies
    31
    Views
    4,356

    Re: n00b asking jspinner question

    Please Edit your post and wrap your code with
    <YOUR CODE HERE> to get highlighting

    Your end code tag is wrong. Change QUOTE to CODE

    You will need to use a number formatting class or method to...
  8. Replies
    31
    Views
    4,356

    Re: n00b asking jspinner question

    The String passed to valueOf on line 17 was empty.
    You need to test if the String passed to the Double class's valueOf() method is empty before calling the method.
    If the String is empty the method...
  9. Replies
    31
    Views
    4,356

    Re: n00b asking jspinner question

    Please post the full text of the error message.

    Please Edit your post and wrap your code with
    <YOUR CODE HERE> to get highlighting
  10. Replies
    31
    Views
    4,356

    Re: n00b asking jspinner question

    If you are interested in learning java you would do better to start at the beginning.
    You can find many topics here: The Really Big Index
Results 1 to 10 of 10