To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=60467
                  Issue #:|60467
                  Summary:|OOoBean: no keyboard events
                Component:|api
                  Version:|1.0.0
                 Platform:|All
                      URL:|
               OS/Version:|All
                   Status:|NEW
        Status whiteboard:|
                 Keywords:|
               Resolution:|
               Issue type:|DEFECT
                 Priority:|P3
             Subcomponent:|code
              Assigned to:|jl
              Reported by:|jl





------- Additional comments from [EMAIL PROTECTED] Thu Jan 12 22:06:51 -0800 
2006 -------
This bug is very similar to i49454. When the test is started a second time (or
more) the window does not receive keyboard events. 

    public static void main (String[] args) {
        try {
              OOoBean b = new OOoBean();
        b.setSize(300,300);
        b.loadFromURL("private:factory/swriter", null);
               b.setSize(300,300);  
               
        java.awt.Frame f = new java.awt.Frame();
        f.addWindowListener(new WindowAdapter() {
            public void windowClosing(WindowEvent e) {
                System.exit(0);
            }
        });
        f.add(b);
        f.setSize (600, 600);
        f.show();
        b.aquireSystemWindow();
        //b.stopOOoConnection();
        } catch(Exception e) {
            e.printStackTrace();
        }
    }

I ran the program from within netbeans and the bug could be reproduced every
time. The first time the program runs everything works, but the following times
it does not. This could mean that in VCL something  is damaged permantly on the
first time the program runs.

---------------------------------------------------------------------
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to