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

时间:2013-05-01 12:55:29

标签: c++ .net c++-cli

我正在尝试显示由GetLastError()提供给我的代码表示的Error消息,并在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;

提前致谢,

1 个答案:

答案 0 :(得分: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为0,这是一个整数。要在C ++ / CLI中生成正确的空指针,您需要使用nullptr
  • lpBuffer和“Error”都需要是托管字符串对象。
    • 对于lpBuffer,你可以只做gcnew String(lpBuffer),它会调用正确的构造函数(带有widenarrow字符指针的构造函数)。
    • 对于“错误”,只需删除_T()即可。编译器会发现您需要一个托管字符串对象,并提供一个包含“错误”的字符串对象。
  • 在托管API中,按钮&amp;图标包含在单独的枚举中。您在此处引用了非托管整数值。您需要将其替换为MessageBoxButtonsMessageBoxIcon的单独参数。

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

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);