Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

My application is using SWT browser and I am trying to add print preview functionality. There is no javascript to invoke print preview for particular web page opened in an SWT browser.

I found some hope with this link: http://www.java2s.com/Code/Java/SWT-JFace-Eclipse/OLEandActiveXexamplegeteventsfromIEcontrol.htm

But I am still unable to invoke print preview. Any suggestions ?

share|improve this question

1 Answer

The Eclipse org.eclipse.swt.browser package contains the Java code that creates a browser.

Either extend the existing code, or copy the code into your own Java package and make whatever changes you want.

share|improve this answer
Thanks for reply Gilbert, Can you please guide how to do this? like in which class file I have to make changes. Is it require some native OS programming ?? – user1682949 Sep 20 '12 at 6:12
@user1682949: You can work with the Browser class first. I don't know if there's any native OS code in the browser package. – Gilbert Le Blanc Sep 20 '12 at 12:51

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.