Board index » delphi » HIDE PROGRAM FROM TASK LIST

HIDE PROGRAM FROM TASK LIST

Hi!
Does anybody know, how to hide my windowless program
from task list (close program dialog box, which appearing
when you press Ctrl+Alt+Del)

Thanks
Antony

 

Re:HIDE PROGRAM FROM TASK LIST


--

Quote
Antony Keks wrote in message <908390542.317880@www>...
>Hi!
>Does anybody know, how to hide my windowless program
>from task list (close program dialog box, which appearing
>when you press Ctrl+Alt+Del)

>Thanks
>Antony

Use Application.hide;

Marko
---------------

Re:HIDE PROGRAM FROM TASK LIST


I'm not using forms.pas and classes.pas.
I need some API function or something...

Marko wrote ...

Quote

>--

>Antony Keks wrote in message <908390542.317880@www>...
>>Hi!
>>Does anybody know, how to hide my windowless program
>>from task list (close program dialog box, which appearing
>>when you press Ctrl+Alt+Del)

>>Thanks
>>Antony

>Use Application.hide;

>Marko
>---------------

Re:HIDE PROGRAM FROM TASK LIST


On Form.Create Use This :

SystemParametersInfo(97,Word(True),@OldVal,0); // This will disable
ALT-TAB and

CTRL-ALT-DELETE.

On Form.Close Use This :
SystemParametersInfo(97,Word(False),@OldVal,0);// This Will enable
ALT-TAB and

CTRL-ALT-DELETE.

Quote
Antony Keks wrote:
> Hi!
> Does anybody know, how to hide my windowless program
> from task list (close program dialog box, which appearing
> when you press Ctrl+Alt+Del)

> Thanks
> Antony

Other Threads