I use CreateDialogParam to create a dialog in my service, it can run normally in XP system.But when I put it into Vista or Win7, it doesn’t work. I want to know why or what else APIs I can use?
I use CreateDialogParam to create a dialog in my service, it can run normally
Share
With session 0 isolation introduced in Vista, services cannot show UI since they run in a separate, non-interactive session. You need to run a standard app on the interactive desktop and use an IPC mechanism to communicate with the service in order to show UI on behalf of the service.