- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在单独的子类文件中有编辑控件。在开始使用 SetWindowSubclass 函数后(我是 C++ 的新手,之前我使用 SetWindowLongPtr 进行子类化,它工作正常但有人建议我开始使用 SetWindowSubclass),我遇到了这个问题:
编译程序后,应用程序绘制了一个空窗口,该窗口立即停止响应(我必须通过任务管理器将其关闭)。输出窗口中的结果错误:
Exception thrown at 0x635F3DEF (msftedit.dll) in TaskTracklist.exe: 0xC0000005: Access violation reading location 0x00000008.
完整代码:
#include "stdafx.h"
#include <windows.h>
#include <commctrl.h>
#include <richedit.h>
#include <string.h>
#include "SearchEditBox.h"
/*global vars*/
LPCWSTR SearchEditBox::editBoxDefText = L"Search...";
bool SearchEditBox::firstLoad = false;
int SearchEditBox::width = 0;
int SearchEditBox::height = 0;
HWND SearchEditBox::editBox;
/*functions*/
LRESULT CALLBACK EditBoxProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam, UINT_PTR uint_ptr, DWORD dwRefData);
void ChangeEdit(const HWND hwnd, const bool change);
/*set-get functions*/
HWND SearchEditBox::getEditBox()
{
return SearchEditBox::editBox;
}
SearchEditBox * SearchEditBox::CreateEditBox(HINSTANCE hInst, HWND hwnd, int pos_x, int pos_y, int width, int height) {
SearchEditBox * p_SearchEditBox = new SearchEditBox;
LoadLibrary(TEXT("Msftedit.dll")); //enables RichEdit field
SearchEditBox::editBox = CreateWindowEx(0, (L"RICHEDIT50W"), editBoxDefText, WS_VISIBLE | WS_CHILD, pos_x + 6, pos_y + 4, width, height, hwnd, NULL, (HINSTANCE)GetWindowLong(hwnd, GWL_HINSTANCE), p_SearchEditBox);
SearchEditBox::width = width;
SearchEditBox::height = height;
if (SearchEditBox::editBox == NULL)
{
delete p_SearchEditBox;
MessageBox(NULL, L"Problem creating the Search box.", L"Error", 0);
return 0;
}
SetWindowSubclass(SearchEditBox::editBox, SearchEditBox::EditBoxProc, 0, 0);
return p_SearchEditBox;
}
LRESULT CALLBACK SearchEditBox::EditBoxProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam, UINT_PTR uIdSubclass, DWORD dwRefData)
{
PAINTSTRUCT ps;
HDC hdc;
switch (uMsg)
{
case WM_SETFOCUS:
{
LPWSTR getText = new TCHAR[10];
GetWindowText(hwnd, getText, 10);
if (_tcscmp(getText, editBoxDefText) == 0)
{
SearchEditBox::ChangeEdit(hwnd, 1);
}
delete getText;
break;
}
case WM_KILLFOCUS:
{
LPWSTR getText = new TCHAR[10];
if (GetWindowText(hwnd, getText, 10) == 0)
{
SearchEditBox::ChangeEdit(hwnd, 0);
}
::SetFocus(NULL);
delete getText;
break;
}
case WM_LBUTTONDBLCLK:
SearchEditBox::ChangeEdit(hwnd, 1);
break;
case WM_PAINT:
{
hdc = BeginPaint(hwnd, &ps);
RECT rc;
InvalidateRect(hwnd, &rc, 0);
if (SearchEditBox::firstLoad == false)
{
SearchEditBox::ChangeEdit(hwnd, 0);
::SetFocus(NULL);
SearchEditBox::firstLoad = true;
}
HBRUSH hBrush = CreateSolidBrush(RGB(33, 33, 33));
SelectObject(hdc, hBrush);
RoundRect(hdc, -6, -4, SearchEditBox::width + 7, SearchEditBox::height + 4, 5, 5);
EndPaint(hwnd, &ps);
break;
}
}
return DefSubclassProc(hwnd, uMsg, lParam, wParam);
}
我很清楚问题出在与 SetWindowSubclass 函数联机的 RichEdit 控件上。
尽管我没有找到任何与 Msftedit.dll 相关的错误特别相关的主题,但我从这些文章(here 和 here 和 here)中了解到我可能引用了 NULL 指针,但这对我来说没有意义,因为那时我会从 SetWindowSubclass 函数上方的这一点得到错误(我不知道):
if (SearchEditBox::editBox == NULL)
{
delete p_SearchEditBox;
MessageBox(NULL, L"Problem creating the Search box.", L"Error", 0);
return 0;
}
我还认为问题可能出在外部函数(意思是在 comctl32 中定义的函数,而不是在类内部定义的函数)访问类特定变量(指针不会为 NULL,但它可能无法访问以某种方式添加到函数中)所以我尝试为 SetWindowSubclass 函数创建局部变量(这也不起作用):
HWND newHWND = SearchEditBox::editBox;
SetWindowSubclass(newHWND, SearchEditBox::EditBoxProc, 0, 0);
使用函数 getEditBox() 也没有解决这个问题。
我还尝试在控件声明中使用 MSFTEDIT_CLASS 而不是 (L"RICHEDIT50W")(认为问题可能出在控件本身内部)但这也无济于事,并且尝试不同的版本(例如 RICHEDIT51W 或 RICHEDIT80W)导致错误(因此我必须使用适用于 VS2015 的正确 RichEdit 版本)。
我还尝试在 CreateEditBox 中声明 HWND editBox(使其成为局部变量),但这也无济于事。
我使用 VS 的免费社区版。
编辑:从代码中清除了我不成功尝试的一些遗留问题。
最佳答案
Exception thrown at 0x635F3DEF (msftedit.dll) in TaskTracklist.exe: 0xC0000005: Access violation reading location 0x00000008.
地址 0 附近的访问冲突通常意味着正在通过 NULL 对象指针访问类/记录数据成员。
Even though I did not find any topic related specifically to this error in connection to Msftedit.dll, I understood from these articles (...) that I may be referencing to NULL pointer, but that does not make sense to me because then I would get error from this bit just above SetWindowSubclass function (which I don't)
问题与访问 NULL HWND
句柄无关。它与访问 NULL 对象指针 有关。而且您的代码中确实有对象指针,因此您需要弄清楚哪个是 NULL。当 AccessViolation 发生时,使用调试器查看在内存地址 0x635F3DEF 处运行的代码,这应该会引导您找到代码中的哪一行崩溃。
话虽如此,EditBoxProc()
的最后一个参数需要是 DWORD_PTR
而不是 DWORD
,并且您正在传递wParam
和 lParam
值到 DefSubclassProc()
的顺序错误。
此外,您的 WM_KILLFOCUS
和 WM_PAINT
处理程序不应调用 SetFocus()
,并且您的 WM_PAINT
处理程序不应调用 InvalidateRect()
。
我建议您重写您的 SearchEditBox
类,使其数据成员不再是 static
。在类中将它们设置为 static
可防止您创建多个具有单个 HWND
的 SearchEditBox
对象。数据成员不需要是static
。您可以将 SearchEditBox*
指针作为子类的 dwRefData
参数传递,这样 EditBoxProc()
就可以访问 SearchEditBox
对象及其非静态成员。
尝试更像这样的东西:
搜索编辑框.h
#ifndef SearchEditBoxH
#define SearchEditBoxH
class SearchEditBox
{
private:
bool firstPaint;
int width;
int height;
HWND editBox;
SearchEditBox();
void ChangeEdit(const bool change);
static LRESULT CALLBACK EditBoxProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam, UINT_PTR uint_ptr, DWORD_PTR dwRefData);
public:
~SearchEditBox();
HWND getEditBox()
static SearchEditBox* CreateEditBox(HINSTANCE hInst, HWND hwnd, int pos_x, int pos_y, int width, int height);
};
#endif
搜索编辑框.cpp
#include "stdafx.h"
#include <windows.h>
#include <commctrl.h>
#include <richedit.h>
#include <string.h>
#include "SearchEditBox.h"
/*global vars*/
static LPCTSTR editBoxDefText = TEXT("Search...");
SearchEditBox::SearchEditBox()
{
firstPaint = false;
width = 0;
height = 0;
editBox = NULL;
}
SearchEditBox::~SearchEditBox()
{
if (editBox)
DestroyWindow(editBox);
}
void SearchEditBox::ChangeEdit(const bool change)
{
//...
}
HWND SearchEditBox::getEditBox()
{
return editBox;
}
SearchEditBox* SearchEditBox::CreateEditBox(HINSTANCE hInst, HWND hwnd, int pos_x, int pos_y, int width, int height)
{
// make sure RichEdit 4.1 is enabled
if (!GetModuleHandle(TEXT("Msftedit.dll")))
{
if (!LoadLibrary(TEXT("Msftedit.dll")))
{
MessageBox(NULL, L"Problem loading Msftedit.dll.", L"Error", 0);
return 0;
}
}
SearchEditBox *pSearchEditBox = new SearchEditBox;
pSearchEditBox->editBox = CreateWindowEx(0, MSFTEDIT_CLASS, editBoxDefText, WS_VISIBLE | WS_CHILD, pos_x + 6, pos_y + 4, width, height, hwnd, NULL, (HINSTANCE) GetWindowLong(hwnd, GWL_HINSTANCE), p_SearchEditBox);
if (!pSearchEditBox->editBox)
{
delete pSearchEditBox;
MessageBox(NULL, L"Problem creating the Search box.", L"Error", 0);
return 0;
}
if (!SetWindowSubclass(pSearchEditBox->editBox, SearchEditBox::EditBoxProc, 0, (DWORD_PTR)p_SearchEditBox))
{
delete pSearchEditBox;
MessageBox(NULL, L"Problem subclassing the Search box.", L"Error", 0);
return 0;
}
pSearchEditBox->width = width;
pSearchEditBox->height = height;
return pSearchEditBox;
}
LRESULT CALLBACK SearchEditBox::EditBoxProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam, UINT_PTR uIdSubclass, DWORD_PTR dwRefData)
{
SearchEditBox *pSearchEditBox = (SearchEditBox*) dwRefData;
switch (uMsg)
{
case WM_NCDESTROY:
RemoveWindowSubclass(hwnd, SearchEditBox::EditBoxProc, uIdSubclass);
pSearchEditBox->editBox = NULL;
break;
case WM_SIZE:
pSearchEditBox->width = LOWORD(lParam);
pSearchEditBox->height = HIWORD(lParam);
break;
case WM_SETFOCUS:
{
TCHAR getText[10];
GetWindowText(hwnd, getText, 10);
if (_tcscmp(getText, editBoxDefText) == 0)
pSearchEditBox->ChangeEdit(true);
break;
}
case WM_KILLFOCUS:
{
TCHAR getText[10];
if (GetWindowText(hwnd, getText, 10) == 0)
pSearchEditBox->ChangeEdit(false);
break;
}
case WM_LBUTTONDBLCLK:
pSearchEditBox->ChangeEdit(true);
break;
case WM_PAINT:
{
if (!pSearchEditBox->firstPaint)
{
pSearchEditBox->firstPaint = true;
pSearchEditBox->ChangeEdit(false);
}
PAINTSTRUCT ps;
HDC hdc = BeginPaint(hwnd, &ps);
HBRUSH hBrush = CreateSolidBrush(RGB(33, 33, 33));
SelectObject(hdc, hBrush);
RoundRect(hdc, -6, -4, pSearchEditBox->width + 7, pSearchEditBox->height + 4, 5, 5);
EndPaint(hwnd, &ps);
break;
}
}
return DefSubclassProc(hwnd, uMsg, wParam, lParam);
}
关于c++ - SetWindowSubclass 内的 msftedit.dll RichEdit 控件出现错误 "Access violation reading location 0x00000008",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37357022/
我有一个包含源代码的 TRichEdit 控件。我想设置单行的背景颜色。 我知道如何设置文本 颜色,但是否也可以设置背景颜色?我不是在谈论整个控件的整个背景颜色,我只是在谈论如何更改一行。 我真的必须
我正在将文本从delphi TRichedit 控件输出到打印机。有一个背景图像,所以我使用具有此逻辑的 EM_FORMATRANGE ... myrichedit.Perform(EM_FORMAT
我创建一个新应用程序,放置 TRichedit 并将 PlainText 属性设置为 true。然后,我运行该应用程序并将一些富格式文本粘贴到 RichEdit 中。 我希望它显示为纯文本,但它会显示
添加一行后,我需要将 RichEdit 滚动到最后。我有一个单独的形式的 RichEdit,我根本不想获得焦点。我尝试了经常建议的解决方案: RichEdit.Lines.Add(someText);
(如果您能更好地理解和定义我的问题,请有人编辑标题。) 我遇到的问题是 RichEdit 的样式格式“恢复”回默认的“无”又名 [],然后返回到我设置的任何内容,粗体或斜体示例。 问题所在 - 我认为
RichEdit 控件在成为其他控件的父控件时停止绘制文本。 这是一个功能还是一个错误?是否可以使 RichEdit 成为其他控件的父控件? 查看下一个应用: -- Form1.dfm --- obj
我希望 RichEdit 处理超链接,因此我按照以下说明进行操作:http://delphi.about.com/od/vclusing/l/aa111803a.htm 以下是我对代码所做的更改: i
当我使用多个 RichEdit 控件时,我的行为非常奇怪: LoadLibrary("Msftedit.dll"); RichEdit = CreateWindow("RICHEDIT50W", ""
我想向 RichEdit 控件添加彩色文本行。但我面临的问题是颜色变化不仅限于我选择的文本。我所做的是: 获取当前光标位置 -> 插入文本 -> 获取光标位置 -> 选择范围 -> 为其着色 -> 取
我需要你的帮助!所以,我正在创建一个带有语法高亮器的 RichEdit,我是这样做的: SendMessage(hWin, WM_SETREDRAW, false, 0);
有人知道是否有类似 Memo/RichEdit 的东西吗?需求:对行进行编号,从流中加载大文件(超过 5 MB)。 最佳答案 Developer Express有一套广泛的 VCL 组件,其中包括一个
如何在 RichEdit 中将某一特定行加粗? 最佳答案 丰富的编辑控件中的格式设置如下: 选择要应用格式的文本。 将该格式应用于所选内容。 事情是这样的: RichEdit1.SelStart :=
我有一个 Richedit,允许我的用户格式化和查看我的应用程序中显示的错误消息。 我现在需要能够仅将文本(无格式)导出到他们的故障单系统使用的另一个数据库。 我已经尝试了所有我能想到的纯文本组合,但
我以前从来不需要使用 TRichEdit,一直使用 TMemo。 当我添加 TMemo 等文本时,我希望 RichEdit 自动滚动到末尾。看看添加一些数据后的样子: 如您所见,滚动条保留在顶部,但我
我在计算 Richedit (Delphi XE) 中的字符数时遇到问题。对于每一个新行,我都会多得到两个字符,但在文本中它们不存在。 示例:这里有 15 个字符,但由于换行,richedit 给出了
我试图在 RichEdit 中保存然后恢复垂直滚动位置。 存储滚动位置的全局变量: SI: TScrollInfo; 此代码保存滚动位置: FillChar( SI, SizeOf(SI), #0 )
Delphi 中的大多数 TWinControl 后代都有一个重写方法 CreateParams 来定义它的子类,例如:'EDIT'、'COMBOBOX'、'BUTTON'、'RICHEDIT' 等。
如果您在 Richedit 中加载一些文本,然后单击鼠标左键 + 移动鼠标滚轮,文本将放大或缩小,而不会丢失文本大小格式。 是否有一种简单的方法可以通过几行代码来实现此功能(放大/缩小)? 谢谢 射线
我试图在 RichEdit 中保存然后恢复垂直滚动位置。 存储滚动位置的全局变量: SI: TScrollInfo; 此代码保存滚动位置: FillChar( SI, SizeOf(SI), #0 )
我有一个 TRichEdit。当我选择一些文本并单击另一个元素时,所选文本的选择消失。有没有办法保持这个选择,当 TRichEdit 失去它的焦点时?谢谢! 最佳答案 TRichEdit 有一个属性H
我是一名优秀的程序员,十分优秀!