I need to build a screensaver which simply draws a picture and displays some information around it. That all isn't any problem.
The problem is that I would like to lock the screen, which I do with the API-Call
Private Declare Function LockWorkStation Lib "user32.dll" () As Long
Call LockWorkStation()
and in fact have my screensaver drawn over the lockscreen. this doesn't work as the lockscreen hides any window run by the user.
Is there a way to programmatically tell the window to stay in front of everything
I've tried with Tipp 0214 from activevb.de (the page is in German, but the essential should be understandable even to English speaking readers) but this is only for all the other windows, not for the lockscreen.
Yes, it does need to be VB6 and changing to .NET isn't an option due to memory consumption.