Search:

Type: Posts; User: Norm

Search: Search took 0.12 seconds.

  1. Replies
    34
    Views
    9,272

    [SOLVED] Re: how to put changeable value in JTextField?

    Add a println next to the statement that creates the textfield. If it prints more than once you have two text fields, one visible and one hidden. If you change the contents of the hidden one you...
  2. Replies
    34
    Views
    9,272

    [SOLVED] Re: how to put changeable value in JTextField?

    How many instances of the frame with the textfield do you create? Are they all visible?
  3. Replies
    34
    Views
    9,272

    [SOLVED] Re: how to put changeable value in JTextField?

    I do not think You can have a non window component visible by itself without its containing window being visible.

    How many instances of the window/frame class that contains the textfield does the...
  4. Replies
    34
    Views
    9,272

    [SOLVED] Re: how to put changeable value in JTextField?

    Is the textfield whose setText() method you are calling, visible in the GUI?
  5. Replies
    34
    Views
    9,272

    [SOLVED] Re: how to put changeable value in JTextField?

    Is the textfield whose setText() method you are calling, visible in the GUI?
    Print out the values of aa and aa.textField where the call to setText() is.
  6. Replies
    34
    Views
    9,272

    [SOLVED] Re: how to put changeable value in JTextField?

    How the class is defined depends on how you are using it. Normally one JFrame is enough.

    What do you mean by "applet"? Applet's run from HTML pages in browsers.
  7. Replies
    34
    Views
    9,272

    [SOLVED] Re: how to put changeable value in JTextField?

    Window is a Java SE class. Can you give your class a different name?

    You can create as many instances of your window class as you want. If you want to see the contents of any component that is in...
  8. Replies
    34
    Views
    9,272

    [SOLVED] Re: how to put changeable value in JTextField?

    I think you are looking at one window and setting the values for the hidden window.
    Change the logic so you set the values for the window you are looking at.
  9. Replies
    34
    Views
    9,272

    [SOLVED] Re: how to put changeable value in JTextField?

    Add a println to your Window (Window is a java SE class???) class's constructor so you can see how many instances of the class you create by the number of times the println prints out its message.
  10. Replies
    34
    Views
    9,272

    [SOLVED] Re: how to put changeable value in JTextField?

    Is there more than on instance of the class that the win variable points to? One is visible and the other, where the call to setText is going, is not.
  11. Replies
    34
    Views
    9,272

    [SOLVED] Re: how to put changeable value in JTextField?

    did you try calling repaint() for the GUI that the text field is shown in?
    Otherwise you'll have to post the code for testing.
  12. Replies
    34
    Views
    9,272

    [SOLVED] Re: how to put changeable value in JTextField?

    Why is textField null?
    Check that the code gives textField a value. Make sure their is only one variable named textField.
  13. Replies
    34
    Views
    9,272

    [SOLVED] Re: how to put changeable value in JTextField?

    Look at line 61 and find the variable that has a null value. If you can not see which variable is null, add a println just before line 61 that prints out the values of all the variables used on line...
  14. Replies
    34
    Views
    9,272

    [SOLVED] Re: how to put changeable value in JTextField?

    Where do you call any methods to change the contents of the text field where the data is displayed?
  15. Replies
    34
    Views
    9,272

    [SOLVED] Re: how to put changeable value in JTextField?

    Can you explain.
    Try calling repaint() after setting the text.
Results 1 to 15 of 15