D dcsdcs Unregistered / Unconfirmed GUEST, unregistred user! 2001-09-11 #2 ShowWindow(Application.Handle, SW_HIDE);
C CJF Unregistered / Unconfirmed GUEST, unregistred user! 2001-09-11 #3 RegisterAsService. 或者做成Service都可以.
A AYellow Unregistered / Unconfirmed GUEST, unregistred user! 2001-09-11 #5 在project1.dpr中<br>Application.ShowMainForm := False;
H hly Unregistered / Unconfirmed GUEST, unregistred user! 2001-09-12 #7 不是的,我写了个小程序,服务器端总是要出现那个界面,我不想让别人看到<br>同时,任务栏也不想有一个标签。<br>我的目的是想让这个程序启动时不留任何痕迹。
M maming Unregistered / Unconfirmed GUEST, unregistred user! 2001-09-12 #8 把mainform.visible := False;<br>加上这个ShowWindow(Application.Handle, SW_HIDE);就行了。
鹦 鹦鹉 Unregistered / Unconfirmed GUEST, unregistred user! 2001-09-13 #9 如果这样,就必须作3件事情。<br>1,function RegisterServiceProcess(dwprocessID,dwType:Integer):Integer;<br> stdcall;external 'KERNEL32.DLL'; //注册使按ctrl+Alt+Del不出现在任务栏中<br>2,mainform.visible := False;<br>3,ShowWindow(Application.Handle, SW_HIDE);
如果这样,就必须作3件事情。<br>1,function RegisterServiceProcess(dwprocessID,dwType:Integer):Integer;<br> stdcall;external 'KERNEL32.DLL'; //注册使按ctrl+Alt+Del不出现在任务栏中<br>2,mainform.visible := False;<br>3,ShowWindow(Application.Handle, SW_HIDE);
I icefire_cwj Unregistered / Unconfirmed GUEST, unregistred user! 2001-09-13 #10 楼上的 RegisterServiceProcess只在WIN9X下有用
C coolbaby Unregistered / Unconfirmed GUEST, unregistred user! 2003-01-17 #12 Application.ShowMainForm := False;