zoukankan      html  css  js  c++  java
  • 如何获得各个运行进程的id

              Q :如何获得各个运行进程的id
                主要解答者:zswang提交人:huiwww
                感谢:zswang、qiqi97
                审核者:dext论坛对应贴子:查看
                     A :

                请问在线高手们,如何获得各个运行进程的id,并列出来,用哪个函数,我高分相送 
                --------------------------------------------------------------- 
                
                ◇[DELPHI]列举当前系统运行进程 
                uses  TLHelp32; 
                procedure  TForm1.Button1Click(Sender:  TObject); 
                var  lppe:  TProcessEntry32; 
                found  :  boolean; 
                Hand  :  THandle; 
                begin 
                Hand  :=  CreateToolhelp32Snapshot(TH32CS_SNAPALL,0); 
                found  :=  Process32First(Hand,lppe); 
                while  found  do 
                begin 
                ListBox1.Items.Add(StrPas(lppe.szExeFile)); 
                found  :=  Process32Next(Hand,lppe); 
                end; 
                end; 
                
                
                --------------------------------------------------------------- 
                
                取得系统运行的进程名 
                var  hCurrentWindow:HWnd;szText:array[0..254]  of  char; 
                begin 
                hCurrentWindow:=Getwindow(handle,GW_HWndFrist); 
                while  hCurrentWindow    <  >  0  do 
                begin 
                if  Getwindowtext(hcurrnetwindow,@sztext,255)  >0  then 
                listbox1.items.add(strpas(@sztext)); 
                hCurrentWindow:=Getwindow(hCurrentwindow,GW_HWndNext); 
                end; 
                end; 
                
                列举当前系统运行进程 
                uses  TLHelp32; 
                procedure  TForm1.Button1Click(Sender:  TObject); 
                var  lppe:  TProcessEntry32; 
                found  :  boolean; 
                Hand  :  THandle; 
                begin 
                Hand  :=  CreateToolhelp32Snapshot(TH32CS_SNAPALL,0); 
                found  :=  Process32First(Hand,lppe); 
                while  found  do 
                begin 
                ListBox1.Items.Add(StrPas(lppe.szExeFile)); 
                found  :=  Process32Next(Hand,lppe); 
                end; 
                end; 
                

  • 相关阅读:
    MQ 2035(MQRC_NOT_AUTHORIZED)
    C# 构造函数中调用虚方法的问题
    Oracle bug 使用max或min函数into到一个char类型报字符缓冲区太小的错误
    windows2003 64位 iis6.0 运行32位web应用程序
    .NET安装和配置Oracle数据访问组件(ODAC)
    WMS函数组:10.创建采购订单
    报表:BOM展开程序
    WMS函数组:9.交货单过帐3(BDC)
    WMS函数组: 7.交货单行项目除
    WMS函数组:1.检查ZPB2是否存在
  • 原文地址:https://www.cnblogs.com/chenhs/p/1286491.html
Copyright © 2011-2022 走看看