使用 GWL_WNDPROC 子类化 richedit 的问题
我对 edit 和 richedit 都做了同样的事情,但对于后者存在访问冲突,为什么?对 tabctrl 执行同样的操作也会发生。我做错了什么?我怎样才能让它发挥作用?
WNDPROC OriginalProc;
LRESULT CALLBACK MyProc(HWND h, UINT m, WPARAM w, LPARAM p)
{
return OriginalProc (h, m, w, p);// access violation for common controls
}
// elsewhere
HWND h = CreateWindow(....)
OriginalProc = (WNDPROC)SetWindowLong(h, GWL_WNDPROC, (LONG)MyProc);
我正在使用 vc++ 6。
提前致谢。
I do this exact thing for both edit and richedit but for the latter there is an access violation, why? The same thing happens when done for tabctrl too. What am I doing wrong? How can I get it to work?
WNDPROC OriginalProc;
LRESULT CALLBACK MyProc(HWND h, UINT m, WPARAM w, LPARAM p)
{
return OriginalProc (h, m, w, p);// access violation for common controls
}
// elsewhere
HWND h = CreateWindow(....)
OriginalProc = (WNDPROC)SetWindowLong(h, GWL_WNDPROC, (LONG)MyProc);
I am using vc++ 6.
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不应该直接调用
OriginalProc
;使用 CallWindowProc 来调用它。另外,很难从您提供的示例中看出,但请确保
OriginalProc
没有被多个窗口使用。在这里看起来它是一个全局变量,但我猜你正在子类化多个窗口。You should not call
OriginalProc
directly; use CallWindowProc to call it instead.Also, it's hard to tell from the sample you gave, but make sure
OriginalProc
is not being used by multiple windows. It looks here that it's a single global variable, but I'm guessing you're subclassing multiple windows.