gpt4 book ai didi

c++ - 无法匹配 MessageBox::Show 的参数列表

转载 作者:行者123 更新时间:2023-11-28 03:17:45 25 4
gpt4 key购买 nike

我正在尝试显示由 GetLastError() 给我的代码表示并由 MessageBox 中的 FormatMessage() 格式化的错误消息。 (使用 C++/CLI)
但是由于某种原因,我无法匹配 MessageBox::Show 的参数列表。
我试图在此论坛帖子中复制 Doron Moraz 提供的解决方案: http://forums.codeguru.com/showthread.php?478858-GetLastError()-in-a-MessageBox()

然而,当我尝试编译我的代码时,我得到:

'System::Windows::Forms::MessageBox::Show' : none of the 21 overloads could convert all the argument types
1> c:\program files (x86)\reference assemblies\microsoft\framework\.netframework\v4.0\system.windows.forms.dll: could be 'System::Windows::Forms::DialogResult System::Windows::Forms::MessageBox::Show(System::String ^,System::String ^,System::Windows::Forms::MessageBoxButtons,System::Windows::Forms::MessageBoxIcon)'
1> c:\program files (x86)\reference assemblies\microsoft\framework\.netframework\v4.0\system.windows.forms.dll: or 'System::Windows::Forms::DialogResult System::Windows::Forms::MessageBox::Show(System::Windows::Forms::IWin32Window ^,System::String ^,System::String ^,System::Windows::Forms::MessageBoxButtons)'
1> while trying to match the argument list '(int, LPCTSTR, const wchar_t [6], long)'

正如您在下面看到的,我的代码与链接中提供的解决方案非常相似。只有我得到上述错误。问题是,为什么? (请参阅下面的代码)。

if((m_hglrc = wglCreateContext(m_hDC)) == NULL)//if the creation of a wgl context fails
{
MessageBox::Show("wglCreateContext Failed");//let us know

void* lpBuffer; //create a buffer to hold our error message

FormatMessage(FORMAT_MESSAGE_ALLOCATE_BUFFER|FORMAT_MESSAGE_FROM_SYSTEM, // It´s a system error
NULL, // No string to be formatted needed
::GetLastError(), // Hey Windows: Please explain this error!
MAKELANGID(LANG_NEUTRAL,SUBLANG_DEFAULT), // Do it in the standard language
(LPTSTR)&lpBuffer, // Put the message here
0, // Number of bytes to store the message
NULL);

System::Windows::Forms::MessageBox::Show( NULL, (LPCTSTR)lpBuffer, _T("Error"),MB_OK|MB_ICONWARNING);

// Free the buffer.
if(lpBuffer)LocalFree(lpBuffer);


return 0;
}

如果它是相关的,我的包括:

#pragma once

#include <Windows.h>
#include <GL/gl.h>
#include<tchar.h>

using namespace System::Windows::Forms;

提前致谢,
盖伊

最佳答案

看起来您已经通过切换到非托管 API 解决了这个问题,但下面是您如何使用托管 API。

如果您要使用托管 API,则需要使用托管对象。在您对 MessageBox::Show 的调用中,您有几个非托管对象。根据错误信息,它解释你的参数是这样的:

MessageBox::Show( NULL, (LPCTSTR)lpBuffer, _T("Error"),MB_OK|MB_ICONWARNING);
// seen by compiler as: int, LPCTSTR, const wchar_t [6], long

这是我认为您试图在 MessageBox 类中调用的方法:

Show(IWin32Window^ owner, String^ text, String^ caption, 
MessageBoxButtons buttons, MessageBoxIcon icon)
  • NULL一般#defined为0,是一个整数。要在 C++/CLI 中生成正确的空指针,您需要使用 nullptr
  • lpBuffer 和“Error”都需要被管理的字符串对象。
    • 对于 lpBuffer,您只需执行 gcnew String(lpBuffer),它将调用适当的构造函数(采用 widenarrow 字符指针的构造函数)。
    • 对于“错误”,只需删除 _T()。编译器会发现您需要一个托管字符串对象,并会提供一个包含“错误”的对象。
  • 在托管 API 中,按钮和图标包含在单独的枚举中。您在此处引用非托管整数值。您需要将其替换为 MessageBoxButtons 的单独参数和 MessageBoxIcon .

完成所有这些后,这是最后的调用:

MessageBox::Show(nullptr, gcnew String(lpBuffer), "Error", 
MessageBoxButtons::OK, MessageBoxIcon::Warning);

但是,我们可以做得更好:如果您不打算传入所有者窗口,请不要调用 API that has a owner window parameter , 调用 API that doesn't .

MessageBox::Show(gcnew String(lpBuffer), "Error", 
MessageBoxButtons::OK, MessageBoxIcon::Warning);

关于c++ - 无法匹配 MessageBox::Show 的参数列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16318490/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com