W woodmud Unregistered / Unconfirmed GUEST, unregistred user! 2001-03-22 #1 用DELPHI编一个监控程序,就是在按下ctrl+del+alt后任务栏中不显示当前运行的这个监控 程序?
A aerobull Unregistered / Unconfirmed GUEST, unregistred user! 2001-03-22 #2 function RegisterServiceProcess (dwProcessID, dwType: DWord) : DWord; stdcall; external 'KERNEL32.DLL'; 在MainForm的FormCreate下加入 RegisterServiceProcess (GetCurrentProcessID, 1); 在FormDestroy中加入 RegisterServiceProcess (GetCurrentProcessID, 0);
function RegisterServiceProcess (dwProcessID, dwType: DWord) : DWord; stdcall; external 'KERNEL32.DLL'; 在MainForm的FormCreate下加入 RegisterServiceProcess (GetCurrentProcessID, 1); 在FormDestroy中加入 RegisterServiceProcess (GetCurrentProcessID, 0);
Z zhangkan Unregistered / Unconfirmed GUEST, unregistred user! 2001-03-22 #3 就这样子,不过在WIN2000下就不行,会报错.