App Loading
-
Your application aside, how do you know it's ready to be used?
"One man's wage rise is another man's price increase." - Harold Wilson
"Fireproof doesn't mean the fire will never come. It means when the fire comes that you will be able to withstand it." - Michael Simmons
"Man who follows car will be exhausted." - Confucius
-
If the 3rd-party application creates a window (even if it's not visible) you can detect it with the Win32 API function, EnumWindows (): http://msdn.microsoft.com/en-us/library/ms633497%28VS.85%29.aspx[^] This gives you one window at a time (to your callback function) until EnumWindows () returns FALSE. You can programmatically examine the window's title to identify it.
-
If the 3rd-party application creates a window (even if it's not visible) you can detect it with the Win32 API function, EnumWindows (): http://msdn.microsoft.com/en-us/library/ms633497%28VS.85%29.aspx[^] This gives you one window at a time (to your callback function) until EnumWindows () returns FALSE. You can programmatically examine the window's title to identify it.
My question was not code-related.
"One man's wage rise is another man's price increase." - Harold Wilson
"Fireproof doesn't mean the fire will never come. It means when the fire comes that you will be able to withstand it." - Michael Simmons
"Man who follows car will be exhausted." - Confucius