收藏 分享(赏)

Delphi编程获取系统当前进程1.doc

上传人:hwpkd79526 文档编号:6748160 上传时间:2019-04-22 格式:DOC 页数:4 大小:44KB
下载 相关 举报
Delphi编程获取系统当前进程1.doc_第1页
第1页 / 共4页
Delphi编程获取系统当前进程1.doc_第2页
第2页 / 共4页
Delphi编程获取系统当前进程1.doc_第3页
第3页 / 共4页
Delphi编程获取系统当前进程1.doc_第4页
第4页 / 共4页
亲,该文档总共4页,全部预览完了,如果喜欢就下载吧!
资源描述

1、Delphi 编程获取系统当前进程、窗口句柄、文件属性以及程序运行状态Delphi 编程获取系统当前进程、窗口句柄、文件属性以及程序运行状态.uses TLHelp32,PsAPI;(1)显示进程列表:procedure TForm1.Button2Click(Sender: TObject);var lppe: TProcessEntry32;found : boolean;Hand : THandle;P:DWORD;s:string;beginListBox1.Items.Clear ;Hand := CreateToolhelp32Snapshot(TH32CS_SNAPALL,0);

2、found := Process32First(Hand,lppe);while found dobegins := StrPas(lppe.szExeFile);if lppe.th32ProcessID0 thenp := lppe.th32ProcessIDelsep := 0;ListBox1.Items.AddObject(s,pointer(p);/列出所有进程。found := Process32Next(Hand,lppe);end;end;(2)杀死某进程:procedure TForm1.Button3Click(Sender: TObject);var lppe: TPr

3、ocessEntry32;found : boolean;Hand : THandle;P:DWORD;sExeFile,sSelect:string;killed:boolean;beginp :=DWORD(ListBox1.Items.ObjectsListBox1.itemindex);if P 0 thenbeginif EnumProcessModules( h, hMod, sizeof(hMod), cbNeeded) thenbeginSetLength(fileName, MAX_PATH);iLen := GetModuleFileNameEx(h, hMod, PCHA

4、R(fileName), MAX_PATH);if iLen 0 thenbeginGetWindowThreadProcessId(H,P);if P0 thenbeginGetWindowThreadProcessId(H,P);if P 0 thenbeginif EnumProcessModules( h, hMod, sizeof(hMod), cbNeeded) thenbeginSetLength(fileName, MAX_PATH);iLen := GetModuleFileNameEx(h, hMod, PCHAR(fileName), MAX_PATH);if iLen

5、0 thenFileSetAttr(sFileName, SR.Attr-faHidden);FindClose(SR);end;if GetFileVersion(sFileName,V1, V2, V3, V4) thenEdit7.Text := intToStr(v1)+.+intToStr(v2)+.+intToStr(v3)+.+intToStr(v4);/ = 方法二 = /varAttrs: Word;f: file of Byte; / 文件大小 必须要 定义为“ file of byte“ ,这样才能取出 bytessize: Longint;/文件属性Attrs := F

6、ileGetAttr(sFileName);Edit1.Text := intToStr(Attrs);/文件大小AssignFile(f, OpenDialog1.FileName);Reset(f);tryAssignFile(f, sFileName);Reset(f);size := FileSize(f);Edit2.Text := intToStr(size);finallyCloseFile(f);end;end;(8)判断程序是否在运行:procedure TForm1.Button5Click(Sender: TObject);var PrevInstHandle:Thandle;AppTitle:pchar;beginAppTitle := pchar(test);PrevInstHandle := FindWindow(nil, AppTitle);if PrevInstHandle 0 then beginif IsIconic(PrevInstHandle) thenShowWindow(PrevInstHandle, SW_RESTORE)elseBringWindowToTop(PrevInstHandle);SetForegroundWindow(PrevInstHandle);end;end;

展开阅读全文
相关资源
猜你喜欢
相关搜索

当前位置:首页 > 企业管理 > 管理学资料

本站链接:文库   一言   我酷   合作


客服QQ:2549714901微博号:道客多多官方知乎号:道客多多

经营许可证编号: 粤ICP备2021046453号世界地图

道客多多©版权所有2020-2025营业执照举报