From: Diez B. R. <de...@we...> - 2004-05-26 10:30:55
|
First of all, meaningful subjects are considered very helpful when writing mails. > I have one application in Java. Whenever you click any help button on the > application, it opens Internet Explorer window and shows the relavent help. > Is there any way, method that if i pass the name of explorer window to > jython and it should close the IE window ?? Basically i want to close the > IE window and i need to find the way either in Java or Jython I'm not aware of such thing - at least not from standard java. As java lacks any platform specific process control libs, you can't do that with the default api. I see two solutions to this: - don't use IE, but a java-based html renderer. Some other tools do that. - go and try a java-com-bridge like jacob and see if you get lucky with it. Regardless of wha you do - this subject is actually java-related, and has noothing to do with jython. Regards, Diez |