Archive for March, 2010

SWT Browser Widget with Mozilla (SWT.MOZILLA)

Posted by Iroshan at 09:39 AM on 06, Mar 2010

We can use browser inside our java application with SWT browser widget. We can load external HTML pages or websites into our applications using it. Normal way to initialize browser widget in your application is following. Browser browser = new Browser(shell, SWT.NONE); This will create a widget with OS specific browser instance. If you are in windows, Internet Explorer will be your browser host....