Question Want to show form during windows xp screen lock

doomslagen

Member
Joined
Mar 13, 2010
Messages
6
Programming Experience
1-3
I am developing an application that needs to be shown no matter what-even windows screen lock. What do I do? Already set TopMost=True
 
Re-write the core Windows DLL files to allow your app to circumvent the windows security model. Don't tell MS as this will break a few laws. I'll have to get back with ya with the api dll's you'll need to start with.

You'll need to learn c and c++ also knowing some assembly will be of help here.
 
The thing is if the workstation (computer) is locked then no one has access to any running program until the system is unlocked. To have your app be an exception you will have circumvent this behavior which violates the OS security model.

I can't think of a situation where you'd even want your app showing if the system is locked anyways, so I can't think of a situation circumventing would benefit you.
 
Back
Top