BUG: java.awt.TextArea Does Not Provide Shortcut Menus

Last reviewed: January 29, 1998
Article ID: Q177752
The information in this article applies to:
  • SDK for Java, version 2.0

SYMPTOMS

The default right-click Shortcut menus that JDK1.1 provides for java.awt.TextArea is not seen with the Microsoft Virtual Machine for Java provided in the SDK for Java 2.0 and Internet Explorer 4.0.

STATUS

Microsoft has confirmed this to be a bug in the Microsoft products listed at the beginning of this article. We are researching this bug and will post new information here in the Microsoft Knowledge Base as it becomes available.

MORE INFORMATION

Steps to Reproduce Behavior

  1. Create a Java project and include the following class:

          import java.awt.*;
          public class test
          {
    
             public static void main(String a[])
             {
                Frame f = new Frame();
                TextArea t = new TextArea();
                f.add(t, "Center");
                f.setSize(300,300);
                f.setVisible(true);
             }
          }
    
    
    
When you right-click on the Frame, you do not see the Shortcut menus with the following options:
  • Undo
  • Cut
  • Copy
  • Paste
  • Delete
  • Select All

REFERENCES

For the latest Knowledge Base articles and other support information on Visual J++ and the SDK for Java, see the following page on the Microsoft Technical Support site:

   http://support.microsoft.com/support/visualj/
   http://support.microsoft.com/support/java/


Additional query words: popup menus TextArea

Keywords : AWTPkg JVM
Technology : kbInetDev internet
Version : WINDOWS:2.0
Platform : WINDOWS
Issue type : kbbug


THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.

Last reviewed: January 29, 1998
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.