Rocky Pulley
Rocky Pulley

Reputation: 23321

Can the Eclipse browser control (embedded IE) be used in a Swing application?

If so, how can I do this? What jars would I need to deploy with my swing application? Converting to an Eclipse SWT application is not an option.

Upvotes: 0

Views: 440

Answers (1)

Konstantin Komissarchik
Konstantin Komissarchik

Reputation: 29139

AWT/Swing and SWT have different event loops. While it is possible to get both event loops going in a single app, I would not recommend it. Many bizzare problems crop up that are difficult to diagnose and fix. But if you are determined to try this, here is a resource that will get you started...

http://www.eclipsezone.com/eclipse/forums/t60541.html

Upvotes: 2

Related Questions