Link to home
Start Free TrialLog in
Avatar of Mortaza Doulaty
Mortaza DoulatyFlag for United Kingdom of Great Britain and Northern Ireland

asked on

Visual Basic 6 Service and Vista: A program can't display a message on your desktop...

We've a legacy Visual Basic 6.0 project that runs as a service using srvany.exe file.
It runs as a local service and some times displays a message in a window.
Recently we wanted to use this program in Windows Vista, every thing works well, except the displaying forms.

"A program can't display a message on your desktop" appears and when clicking "Show me the message" button, the app's window in displayed.

As I searched for this problem, this is described as below:
You have a service, or an app running as one, that is trying to pop-up a window from the SYSTEM (session 0) desktop to your logged-on
session. By default, this is NOT allowed anymore - it worked in XP/2003/downlevel OSes because in those OSes, you logged into session 0, but not so anymore in Vista / Server 2008.

How can I tell my service to display a window in the current running user's desktop, not the session 0 (System)?

Or an alternative way to solve this problem?

As I said earlier, I'm using Visual Basic 6.0 and my service is being run using srvany
(http://support.microsoft.com/kb/137890)

Any comment would be highly appreciated.
Avatar of HooKooDooKu
HooKooDooKu

Can the service execute another program?
If so, you could write a simple application that displays a message from a command line or from a temporary file, and call this application from the service.
Avatar of Mortaza Doulaty

ASKER

I have to test it, but if the service executes another program, that program is also executed as system, not the user, and the same problem will still exists...
No luck, still the same problem.
ASKER CERTIFIED SOLUTION
Avatar of David_Ward
David_Ward
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Dear David_Ward,

Thanks for your comment.
Can you post some sample apps with a TCP/IP or UDP conversation between level 0 and a simple app?
It is just a perfectly ordinary TCP/IP or UDP conversation the fact that one side is a level 0 service and the other end is a level ?n+ app has no bearing on the matter, network data crosses those divides with no special handling.