如何将整数句柄转换为 HWND

发布于 2025-01-02 13:56:57 字数 330 浏览 1 评论 0原文

我正在编写一个小型测试程序,为此我需要编辑控件的句柄。我已经从 Spy ++ 复制了句柄的值(比方说 000A0B40)。

所以我做了以下

#define editControlHandle 0x000A0B40

int *intHandle;
intHandle=(int*)editControlHandle;
HWND handle=(HWND)intHandle;
int textlength=GetWindowTextLength(handle);

我还做了一个getlasterror它给了我error_success。

I am writing a small test program, and for that i require the handle of an edit control. I have copied the value of the handle from Spy ++ (lets say 000A0B40).

So i did the following

#define editControlHandle 0x000A0B40

int *intHandle;
intHandle=(int*)editControlHandle;
HWND handle=(HWND)intHandle;
int textlength=GetWindowTextLength(handle);

I also did a getlasterror and it gave me error_success.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

伤痕我心 2025-01-09 13:56:57

GetWindowTextLength 无法检索另一个应用程序中编辑控件的文本长度。

文档

GetWindowTextLength cannot retrieve the length of the text of an edit control in another application.

Documentation

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文