| 
PRB: Using Cut/Copy Items in HTML Edit Control Fails in VJ++ 6.0
ID: Q200184
 
 | 
The information in this article applies to:
- 
Microsoft Visual J++, version  6.0
SYMPTOMS
The following error occurs when you try to use Cut or Copy in an HTML edit box control:
'0x80000001 - Not Implemented'
RESOLUTION
To fix the problem, call Application.OLERequired() in your main() method before you call Application.run().
MORE INFORMATION
Steps to Reproduce the Problem
- Create a Windows application project.
- Drag and drop an HTML Control into the Form. This control can be found in the WFC Controls section of the Visual J++ 6.0 Toolbox.
- Add the following line before the statement public Form1():
DhEdit adhEdit;  // This implements an HTML edit box control. 
- Double-click the control, and the following stub appears (add the code as provided in the following code sample):
   private void HTMLControl1_documentReady(Object source,                                                                                                                                  DocumentReadyEvent e)
   {
      adhEdit=new DhEdit();
      adhEdit.setMultiline(true);
      adhEdit.setWordWrap(false);
      adhEdit.setCols(40);
      adhEdit.setRows(20);
      HTMLControl1.setNewHTMLElements(new DhElement[]{adhEdit});
    } 
- Run the Application and type something in the HTML Control.
- Right-click on the item, select copy or cut, and the following error occurs:
'0x80000001 - Not Implemented'
To fix the problem do the following in your main() method:
   public static void main(String args[])
   {
      Application.OLERequired();
      Application.run(new Form1());
   } 
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: 
Keywords          : KbUIDesign kbVJ600 kbGrpJava 
Version           : WINDOWS:6.0
Platform          : WINDOWS 
Issue type        : kbprb