Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles
(untagged)

Formatted MessageBox/AfxMessageBox

0.00/5 (No votes)
20 Oct 2010 2  
Need to Format/sprintf a string before displaying a messagebox? Here is solution!
You often need to format a string and populate it with relevant data before displaying a message box. For example
int nAge = 27;
TCHAR sName[]="Ajay";
float nSalary = 12500.50;

// Declare variable
CString strMessage;<br>
// Format
strMessage.Format( _T("Name is %s, Age is %d, and salary is %.2f"), 
    sName, nAge, nSalary);<br>
// Then display.
AfxMessageBox(strMessage);</br></br>
What if this can be acheived by single statement:
AfxMessageBoxFormatted(_T("Name is %s, Age is %d, and salary is %.2f"), 
   sName, nAge, nSalary);
And here is implementation of AfxMessageBoxFormatted:
void AfxMessageBoxFormatted(LPCTSTR pFormatString, ...)
{
    va_list vl;
    va_start(vl, pFormatString);<br>
    CString strFormat;
    strFormat.FormatV(pFormatString, vl); // This Line is important!<br>
    // Display message box.	
    AfxMessageBox(strFormat);
}</br></br>
If you don't you MFC, or don't want to use, you can implement MessageBoxFormatted as:
void MessageBoxFormatted(HWND hWnd, LPCTSTR pCaption, LPCTSTR pFormatString, ...)
{
    va_list vl;
    va_start(vl, pFormatString);<br>    
    TCHAR strFormat[1024]; // Must ensure size!<br>

    // Generic version of vsprintf, works for both MBCS and Unicode builds 
    _vstprintf(strFormat, pFormatString, vl);<br>	
    // Or use following for more secure code
    // _vstprintf_s(strFormat, sizeof(strFormat), pFormatString, vl)<br>
    ::MessageBox(hWnd, strFormat, pCaption,MB_ICONINFORMATION);
}</br></br></br></br>
And use it as:
MessageBoxFormatted(NULL,  // Or a valid HWND
    _T("Information"),
    _T("Name is %s, Age is %d, and salary is %.2f"),
    sName, nAge, nSalary);
If you don't understand stuff like TCHAR, LPCTSTR, _T, you better read this Tip/Trick: What are TCHAR, WCHAR, LPSTR, LPWSTR, LPCTSTR etc?[^]

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here