Y yanghx_yhx Unregistered / Unconfirmed GUEST, unregistred user! 2001-11-06 #1 各位高手: ; ; 我需要关闭pkunzip.exe的进程(名字为Winoldap).请问再delphi中如何可以做到?
W wind2000 Unregistered / Unconfirmed GUEST, unregistred user! 2001-11-06 #2 看你一分都不出,难怪没人回答...我本也不想回答的,就当我今天做一件好事吧...哎... 学雷锋很容易,难的是天天都学雷锋啊![^] 关闭外部应用程序 如何在 Delphi 应用程序中,去关闭外部已开启的应用程序? 下面给出一段在 Delphi 中关闭“计算器”程序为例: var ; HWndCalculator : HWnd; begin// find the exist calculator window ; HWndCalculator := FindWindow(nil, '计算器'); // close the exist Calculator ; if HWndCalculator <> 0 then ; ; SendMessage(HWndCalculator, WM_CLOSE, 0, 0); end
看你一分都不出,难怪没人回答...我本也不想回答的,就当我今天做一件好事吧...哎... 学雷锋很容易,难的是天天都学雷锋啊![^] 关闭外部应用程序 如何在 Delphi 应用程序中,去关闭外部已开启的应用程序? 下面给出一段在 Delphi 中关闭“计算器”程序为例: var ; HWndCalculator : HWnd; begin// find the exist calculator window ; HWndCalculator := FindWindow(nil, '计算器'); // close the exist Calculator ; if HWndCalculator <> 0 then ; ; SendMessage(HWndCalculator, WM_CLOSE, 0, 0); end
Y yanghx_yhx Unregistered / Unconfirmed GUEST, unregistred user! 2001-11-06 #3 非常感谢呀.不是我吝啬,是我操作错啦,应该给你加分的. 下回补上