I created a page window using CreateWindowEx.
Run the script from any application.
How to move a window that is running the application in the newly created window ?
As in the created window to start another application ?
4 posts
If you're creating an installer, you shouldn't need to call CreateWindowEx, ever.
If you're creating a program with nsis, then have a look at this: http://msdn.microsoft.com/en-us/libr...=vs.85%29.aspx
If you're creating a program with nsis, then have a look at this: http://msdn.microsoft.com/en-us/libr...=vs.85%29.aspx
But I so needed ! A must see in my own box on the page of the installer - like running another program.Originally Posted by JasonFriday13 View PostIf you're creating an installer, you shouldn't need to call CreateWindowEx, ever.
Move windows with SetWindowPos or MoveWindow...