Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-4173058

Text fields in awt.Window does not work

XMLWordPrintable

    • sparc
    • solaris_2.6



      Name: el35337 Date: 09/11/98


      /*
       * This code creates an awt.Window with a text field on it. Once running
       * you cannot type any text into the text field.
       */
      //import jclass.util.*;
      import java.awt.*;

      //import com.sterwent.sat.extended.*;

      class WindowTest
      {
          /** Used to test how WindowTypePanel looks.
           * @param String args[] - Command line arguments
           */
          static public void main(String args[])
              {
                  Window test = new Window(new Frame());
                  test.setLayout( null );
                  test.setBounds( 50, 50, 400, 400 );
            
                  TextField txtF = new TextField( "TextField" );
                  txtF.setBounds( 10, 60, 100, 40 );
                  test.add(txtF);
            
                  test.show();
                  txtF.requestFocus();
              }

      }
      (Review ID: 38505)
      ======================================================================

            dmendenhsunw David Mendenhall (Inactive)
            elarsen Erik Larsen (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: