Issue 60468 - OOoBean: no keyboard events
Summary: OOoBean: no keyboard events
Status: CLOSED DUPLICATE of issue 60467
Alias: None
Product: App Dev
Classification: Unclassified
Component: api (show other issues)
Version: 3.3.0 or older (OOo)
Hardware: All All
: P3 Trivial
Target Milestone: ---
Assignee: joachim.lingner
QA Contact: issues@api
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2006-01-13 06:32 UTC by joachim.lingner
Modified: 2013-02-24 21:08 UTC (History)
1 user (show)

See Also:
Issue Type: DEFECT
Latest Confirmation in: ---
Developer Difficulty: ---


Attachments

Note You need to log in before you can comment on or make changes to this issue.
Description joachim.lingner 2006-01-13 06:32:30 UTC
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.
Comment 1 joachim.lingner 2006-03-01 14:25:19 UTC
.

*** This issue has been marked as a duplicate of 60467 ***
Comment 2 joachim.lingner 2006-03-01 14:25:46 UTC
.