Search:

Type: Posts; User: jellescheer

Search: Search took 0.08 seconds.

  1. Replies
    4
    Views
    1,067

    Re: How to solve this?

    Fixed it.



    public void actionPerformed (ActionEvent ae)
    {
    String veldinhoud = uitvoerVeld.getText();
    uitvoerVeld.setText(invoerVeld.getText());
    invoerVeld.setText(veldinhoud);...
  2. Replies
    4
    Views
    1,067

    Re: How to solve this?

    Tried this:



    public void actionPerformed (ActionEvent ae)
    {
    String veldinhoud = invoerVeld.getText();
    uitvoerVeld.setText(invoerVeld.getText());...
  3. Replies
    4
    Views
    1,067

    Re: How to solve this?

    How would I do this?:) Sorry, really new in Java.
  4. Replies
    4
    Views
    1,067

    How to solve this?

    This code generates 2 text fields and one button. Typing a text in the first textfield and then pressing on the button, copies the text from the first textfield (invoerVeld) to the second textfield...
Results 1 to 4 of 4