My app currently has two processes that run as children of it, but I don't want
the user to be able to minimize or close them. I have already handled the close
on the children by trapping SC_Close. When the user minimizes or restores the
parent process, I want to minimize/restore the children processes also. Is the
easiest way to do this to set up event semaphores in the child processes and trap
the minimized event in the parent, then post the sems when receiving it. Is this
the easiest way or are there better ways. I am coding this in C++ using ICLUI
and CSET/2. If I were to implement this, how would I get notified the user restored
the screen from the task list. Is there a Restore event or something ?
Thanks,
Mark