国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學院 > 開發設計 > 正文

獲取其他進程中ListBox和ComboBox的內容

2019-11-18 18:24:10
字體:
來源:轉載
供稿:網友
(*//標題:獲取其他進程中ListBox和ComboBox的內容說明:Window2000+Delphi6調試通過設計:Zswang支持:wjhu111@21cn.com日期:2004-03-25//*)
function GetListBoxText(mHandle: THandle; mStrings: TStrings): Boolean;var  vItemCount: Integer;  I: Integer;  S: string;begin  Result := False;  if not Assigned(mStrings) then Exit;  mStrings.BeginUpdate;  try    mStrings.Clear;    vItemCount := SendMessage(mHandle, LB_GETCOUNT, 0, 0);    for I := 0 to vItemCount - 1 do begin      SetLength(S, SendMessage(mHandle, LB_GETTEXTLEN, I, 0));      SendMessage(mHandle, LB_GETTEXT, I, Integer(@S[1]));      mStrings.Add(S);    end;    SetLength(S, 0);  finally    mStrings.EndUpdate;  end;  Result := True;end; { GetListBoxText }
function GetComboBoxText(mHandle: THandle; mStrings: TStrings): Boolean;var  vItemCount: Integer;  I: Integer;  S: string;begin  Result := False;  if not Assigned(mStrings) then Exit;  mStrings.BeginUpdate;  try    mStrings.Clear;    vItemCount := SendMessage(mHandle, CB_GETCOUNT, 0, 0);    for I := 0 to vItemCount - 1 do begin      SetLength(S, SendMessage(mHandle, CB_GETLBTEXTLEN, I, 0));      SendMessage(mHandle, CB_GETLBTEXT, I, Integer(@S[1]));      mStrings.Add(S);    end;    SetLength(S, 0);  finally    mStrings.EndUpdate;  end;  Result := True;end; { GetComboBoxText }
//ExamplePRocedure TForm1.FormCreate(Sender: TObject);begin  RegisterHotKey(Handle, 1, MOD_WIN, VK_F2);  RegisterHotKey(Handle, 2, MOD_WIN, VK_F3);end;
procedure TForm1.FormDestroy(Sender: TObject);begin  UnRegisterHotKey(Handle, 1);  UnRegisterHotKey(Handle, 2);end;
procedure TForm1.WMHOTKEY(var Msg: TWMHOTKEY);begin  case Msg.HotKey of    1:      GetListBoxText(        WindowFromPoint(Point(Mouse.CursorPos.X, Mouse.CursorPos.Y)),        MemoText.Lines);    2:      GetComboBoxText(        WindowFromPoint(Point(Mouse.CursorPos.X, Mouse.CursorPos.Y)),        MemoText.Lines);  end;end;

上一篇:如何用idFTP遍歷整個目錄----下載、刪除

下一篇:獲取其他程序中TreeView的內容

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
學習交流
熱門圖片

新聞熱點

疑難解答

圖片精選

網友關注

主站蜘蛛池模板: 洪江市| 彰化县| 石柱| 宜昌市| 双峰县| 马公市| 额敏县| 江都市| 南溪县| 仁布县| 永善县| 周至县| 涪陵区| 方城县| 邵阳市| 淮北市| 梨树县| 上林县| 吴江市| 三台县| 高陵县| 望江县| 原阳县| 吐鲁番市| 巴林左旗| 玉龙| 大荔县| 得荣县| 垦利县| 平泉县| 罗城| 重庆市| 福州市| 宁河县| 双牌县| 铜梁县| 茶陵县| 育儿| 读书| 阳江市| 白山市|