Window10 OpenProcess |
答題得分者是:jcjroc
|
boy330077
一般會員 發表:39 回覆:59 積分:19 註冊:2009-10-15 發送簡訊給我 |
在WIN7下 運作正常的 OPENPROCESS 到 WINDOW10下 確回傳0
不知道有沒有前輩測試過 [code delphi] procedure TForm1.Button1Click(Sender: TObject); var HCurrentWindow: HWND; tmpProcess:Cardinal; begin HCurrentWindow := GetWindow(Handle, GW_Hwndfirst); while HCurrentWindow <> 0 do begin if IsWindowVisible(HCurrentWindow) then begin GetWindowThreadProcessId(HCurrentWindow, tmpProcess); Memo1.Lines.Append(Format('handle : %.8x', [HCurrentWindow])); Memo1.Lines.Append(Format('thid : %.8x', [tmpProcess])); tmpProcess := OpenProcess(PROCESS_ALL_ACCESS, false, tmpProcess); Memo1.Lines.Append(Format('OpenProcess : %.8x', [tmpProcess])); CloseHandle(tmpProcess); end; HCurrentWindow := GetWindow(HCurrentWindow, GW_HwndNext); end; end; [/code] |
jcjroc
高階會員 發表:21 回覆:279 積分:115 註冊:2002-09-18 發送簡訊給我 |
權限問題,失敗時你可以用GetLastError看看失敗原因
===================引 用 boy330077 文 章=================== 在WIN7下 運作正常的 OPENPROCESS 到 WINDOW10下 確回傳0 不知道有沒有前輩測試過 [code delphi] procedure TForm1.Button1Click(Sender: TObject); var HCurrentWindow: HWND; tmpProcess:Cardinal; begin HCurrentWindow := GetWindow(Handle, GW_Hwndfirst); while HCurrentWindow <> 0 do begin if IsWindowVisible(HCurrentWindow) then begin GetWindowThreadProcessId(HCurrentWindow, tmpProcess); Memo1.Lines.Append(Format('handle : %.8x', [HCurrentWindow])); Memo1.Lines.Append(Format('thid : %.8x', [tmpProcess])); tmpProcess := OpenProcess(PROCESS_ALL_ACCESS, false, tmpProcess); Memo1.Lines.Append(Format('OpenProcess : %.8x', [tmpProcess])); CloseHandle(tmpProcess); end; HCurrentWindow := GetWindow(HCurrentWindow, GW_HwndNext); end; end; [/code] |
boy330077
一般會員 發表:39 回覆:59 積分:19 註冊:2009-10-15 發送簡訊給我 |
|
jcjroc
高階會員 發表:21 回覆:279 積分:115 註冊:2002-09-18 發送簡訊給我 |
|
boy330077
一般會員 發表:39 回覆:59 積分:19 註冊:2009-10-15 發送簡訊給我 |
本站聲明 |
1. 本論壇為無營利行為之開放平台,所有文章都是由網友自行張貼,如牽涉到法律糾紛一切與本站無關。 2. 假如網友發表之內容涉及侵權,而損及您的利益,請立即通知版主刪除。 3. 請勿批評中華民國元首及政府或批評各政黨,是藍是綠本站無權干涉,但這裡不是政治性論壇! |