Re: How to restore a Windows application using java
- From: Roedy Green <my_email_is_posted_on_my_website@xxxxxxxxxxxxxx>
- Date: Thu, 12 Jan 2006 04:42:21 GMT
On 11 Jan 2006 20:26:36 -0800, "get_moumita@xxxxxxxxxxx"
<moumitaghosh@xxxxxxxxxxxxxxx> wrote, quoted or indirectly quoted
someone who said :
>hi,
>I use exec to start notepad application .Is it possible to restore the
>minimized notepad application from my java application....
>plz help
see http://mindprod.com/jgloss/exec.html
the only handle you have on the child process is the Process object.
It gives you very little power. All you can do pretty well is feed it
stdin chars and look at std out and std err. You can look at the exit
value, and kill the child. But other than that, the child is on its
own.
There are ways of getting finer control, but that requires JNI on the
mother Java and hooks in the child.
--
Canadian Mind Products, Roedy Green.
http://mindprod.com Java custom programming, consulting and coaching.
.
- Follow-Ups:
- Re: How to restore a Windows application using java
- From: get_moumita@xxxxxxxxxxx
- Re: How to restore a Windows application using java
- References:
- How to restore a Windows application using java
- From: get_moumita@xxxxxxxxxxx
- How to restore a Windows application using java
- Prev by Date: How to restore a Windows application using java
- Next by Date: Re: How to restore a Windows application using java
- Previous by thread: How to restore a Windows application using java
- Next by thread: Re: How to restore a Windows application using java
- Index(es):
Relevant Pages
|