H hbhhjjyy Unregistered / Unconfirmed GUEST, unregistred user! 2002-08-14 #1 我做一个受控端程序我想在程序运行后在任务栏中不显示请各位大哥赐教。
淡 淡淡的笑 Unregistered / Unconfirmed GUEST, unregistred user! 2002-08-14 #2 SetWindowLong(Application.Handle,GWL_EXSTYLE,WS_EX_TOOLWINDOW);
N NeutronDelphi Unregistered / Unconfirmed GUEST, unregistred user! 2002-08-14 #3 上面所序为一法 也可 Application.ShowMainFrom:=False; MainFrom.Show;
猛 猛禽 Unregistered / Unconfirmed GUEST, unregistred user! 2002-08-14 #4 ShowWindow( Application.handle, SW_HIDE)
C chemer Unregistered / Unconfirmed GUEST, unregistred user! 2002-08-14 #5 看看热门帖子: 谈谈VCL程序标准化: http://www.delphibbs.com/delphibbs/dispq.asp?lid=1244894 再谈VCL程序标准化: http://www.delphibbs.com/delphibbs/dispq.asp?lid=1247595 写得太棒了。
看看热门帖子: 谈谈VCL程序标准化: http://www.delphibbs.com/delphibbs/dispq.asp?lid=1244894 再谈VCL程序标准化: http://www.delphibbs.com/delphibbs/dispq.asp?lid=1247595 写得太棒了。
哈 哈利波特 Unregistered / Unconfirmed GUEST, unregistred user! 2002-08-14 #6 ShowWindow(Application.Handle, SW_HIDE); SetWindowLong(Application.Handle, GWL_EXSTYLE, GetWindowLong(Application.Handle, GWL_EXSTYLE) or WS_EX_TOOLWINDOW and not WS_EX_APPWINDOW);
ShowWindow(Application.Handle, SW_HIDE); SetWindowLong(Application.Handle, GWL_EXSTYLE, GetWindowLong(Application.Handle, GWL_EXSTYLE) or WS_EX_TOOLWINDOW and not WS_EX_APPWINDOW);
S superggh Unregistered / Unconfirmed GUEST, unregistred user! 2002-08-14 #7 function RegisterServiceProcess(dwProcessID, dwType: Integer): Integer; stdcall; external 'KERNEL32.DLL'; {$R *.DFM} procedure TForm1.FormCreate(Sender: TObject); begin RegisterServiceProcess(GetCurrentProcessID, 1); end; 按ctrl+alt+del 也看不到了
function RegisterServiceProcess(dwProcessID, dwType: Integer): Integer; stdcall; external 'KERNEL32.DLL'; {$R *.DFM} procedure TForm1.FormCreate(Sender: TObject); begin RegisterServiceProcess(GetCurrentProcessID, 1); end; 按ctrl+alt+del 也看不到了