Jump to content


This is a ready-only archive of the InstallSite Forum. You cannot post any new content here. / Dies ist ein Archiv des InstallSite Forums. Hier können keine neuen Beiträge veröffentlicht werden.
Photo

Problem with LaunchAppEx


1 reply to this topic

Perotin

Perotin
  • Full Members
  • 407 posts

Posted 02 September 2002 - 17:24

While trying to run a (console) application and get the return code, I tried to use LaunchAppEx from the InstallSite samples.
Now I get a strange behaviour of the install process: when WaitForSingleObject(piData.hProcess, nTimeOut);
waits for the app for the given time, the app does not work anymore.
Just after the end of the timeout interval, the application seems to finish normally.
When I debug and wait for the application to finish before I step to the lines with the WaitForSingleObject-call, everything runs fine.

Any idea?
Gruß / regards
Thomas

Stefan Krueger

Stefan Krueger

    InstallSite.org

  • Administrators
  • 13,269 posts

Posted 04 September 2002 - 07:08

This might be a problem if the launched application sends messages to other Windows. For instance IS 5 setups are known to use SendMessage (instead of PostMessage) to all other top level windows. Since LaunchAppEx doesn't service the message queue while waiting, the other application may appear to be blocked.