Very tough question. Can anyone solve it

Hi.
If u press Ctrl+Alt+Del then a dialog box appears listing all the app running.
How do I hide my app from it.
Is there any easy way to do this ??
[165 byte] By [Arsalan] at [2007-11-16 15:16:03]
# 1 Re: Very tough question. Can anyone solve it
I don't know any, but if you find out, be sure to let me know because I have the same problem...

Best Regards
Pedro

__________________________________________________________
Please always rate my answers, or else I'll not know if I'm being useful
PedroES at 2007-11-10 5:41:21 >
# 2 Re: Very tough question. Can anyone solve it
the RegisterServiceProcess API from kernel32.dll should do what you want.
You need to call it via GetProcAddress...
Lothar Haensler at 2007-11-10 5:42:19 >
# 3 Re: Very tough question. Can anyone solve it
Hi.
Can u give me a sample source code for it
Arsalan at 2007-11-10 5:43:29 >
# 4 Re: Very tough question. Can anyone solve it
Under WIN9x you can use

BOOLEAN a;
SystemParametersInfo( SPI_SCREENSAVERRUNNING, 1, &a, 0); to disable CTRL-ALT-DEL

and
SystemParametersInfo( SPI_SCREENSAVERRUNNING, 0, &a, 0); to enable

If you want to know how to do this under NT, let me know. It is little bit complicated.
fblaha at 2007-11-10 5:44:23 >
# 5 Re: Very tough question. Can anyone solve it
I knew how to diable ctrl+alt+del.
I want to know how to hide an app from the dialog of it
Arsalan at 2007-11-10 5:45:32 >