0

我试图在 MessageBox 中显示由 GetLastError() 提供给我并由 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;

在此先感谢,
盖伊

4

1 回答 1

2

看起来您已经通过切换到非托管 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 as 0,是一个整数。要在 C++/CLI 中生成正确的空指针,您需要使用nullptr.
  • lpBuffer 和“Error”都需要托管字符串对象。
    • 对于 lpBuffer,你可以做gcnew String(lpBuffer),它会调用正确的构造函数(接受字符指针的构造函数)。
    • 对于“错误”,只需删除_T(). 编译器将确定您需要一个托管字符串对象,并将提供一个包含“错误”的对象。
  • 在托管 API 中,按钮和图标包含在单独的枚举中。您在此处引用非托管整数值。您需要将其替换为MessageBoxButtonsMessageBoxIcon的单独参数。

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

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

但是,我们可以做得更好:如果您不打算传入所有者窗口,请不要调用具有所有者窗口参数的 API,调用没有所有者窗口参数的 API 。

MessageBox::Show(gcnew String(lpBuffer), "Error", 
    MessageBoxButtons::OK, MessageBoxIcon::Warning);
于 2013-05-01T14:38:25.240 回答