zoukankan      html  css  js  c++  java
  • 关闭进程2

    uses
    Tlhelp32;  //在工程中引入单元Tlhelp32

    //使用函数前,请在工程的前面对函数进行声明,截图如下

    ///Delphi结束指定进程函数
    function TForm1.EndProcess(ExeFileName:string):integer;
    const
    PROCESS_TERMINATE = $0001;
    var
    ContinueLoop: BOOLean;
    FSnapshotHandle: THandle;
    FProcessEntry32:TProcessEntry32;
    begin
    Result := 0;
    FSnapshotHandle := CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, 0);
    FProcessEntry32.dwSize := SizeOf(FProcessEntry32);
    ContinueLoop := Process32First(FSnapshotHandle, FProcessEntry32);

    while Integer(ContinueLoop) <> 0 do
    begin
    if ((UpperCase(ExtractFileName(FProcessEntry32.szExeFile)) =
    UpperCase(ExeFileName)) or (UpperCase(FProcessEntry32.szExeFile) =
    UpperCase(ExeFileName))) then
    Result := Integer(
    TerminateProcess(OpenProcess(PROCESS_TERMINATE,
    BOOL(0),FProcessEntry32.th32ProcessID),0));
    ContinueLoop := Process32Next(FSnapshotHandle, FProcessEntry32);
    end;
    CloseHandle(FSnapshotHandle);
    end;
    //////////////////////////////////////////////////////////////////////////////
    //调用方式
    if  KillTask('qq.exe') <> 0 then
      showmessage('结束QQ成功')
    else
      showmessage('无法结束QQ');
    ---------------------
    作者:friendan
    来源:CSDN
    原文:https://blog.csdn.net/friendan/article/details/7905414
    版权声明:本文为博主原创文章,转载请附上博文链接!

  • 相关阅读:
    Django之数据库--ORM
    Vue 父子组件
    axios封装
    DRF常用功能
    DRF框架之Serializer序列化器的反序列化操作
    Django、DRF有什么不同
    RESTFUL风格
    判断ViewPager滑动方向
    Incompatible integer to pointer conversion sending 'NSInteger' (aka 'int') to parameter of type 'id'
    AchartEngine使用
  • 原文地址:https://www.cnblogs.com/maweiwei/p/11270169.html
Copyright © 2011-2022 走看看