Link to home
Start Free TrialLog in
Avatar of talklein
talklein

asked on

When I press Alt+Ctrl+Del ......

When I press Alt+Ctrl+Del I see a menu and there I can Close any application.
How can I make my application invisible in this menu?
(without locked any button on the keyboard).
Avatar of talklein
talklein

ASKER

Edited text of question
Use ShowWindow(Application.Handle, SW_Hide);
talklein

Have you tried the EnumThreadWindows and EnumThreadWndProc API calls...in the win32 help file...

could be what you looking for...

Later
BoRiS
ShowWindow(Application.Handle, SW_Hide);
This is for hide the application from taskbar.
and the other answer didn't help me to find the Order for this question.
Mmm, is it possible at all? Have you seen applications doing it?
Yes I saw
and I also found How to do this?

If you want to know Send me Email :    talklein@ort.org.il
                                   
                                     Or in ICQ :     11015535              
ASKER CERTIFIED SOLUTION
Avatar of tktk
tktk

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
Thank you!