我想修改消息框的标题,请问应该在哪里改?怎么改?
就是用AfxMessageBox()弹出的那种消息框。
谢谢!

解决方案 »

  1.   

    http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vclib/html/_mfc_cwinapp.3a3a.m_pszappname.asp
    Res
    The application name can come from the parameter passed to the CWinApp constructor, or, if not specified, to the resource string with the ID of AFX_IDS_APP_TITLE. If the application name is not found in the resource, it comes from the program's .EXE filename. Returned by the global function AfxGetAppName. m_pszAppName is a public variable of type const char*.Note   If you assign a value to m_pszAppName, it must be dynamically allocated on the heap. The CWinApp destructor calls free( ) with this pointer. You many want to use the _tcsdup( ) run-time library function to do the allocating. Also, free the memory associated with the current pointer before assigning a new value. For example:
    //First free the string allocated by MFC at CWinApp startup.
    //The string is allocated before InitInstance is called.
    free((void*)m_pszAppName);
    //Change the name of the application file.
    //The CWinApp destructor will free the memory.
    m_pszAppName=_tcsdup(_T("d:\\somedir\\myapp.exe"));
      

  2.   

    自己继承CDialog类做一个吧,并不复杂