void AfxMessageBoxFormatted(LPCTSTR pFormatString, ...)
{
va_list vl;
va_start(vl, pFormatString);<br>
CString strFormat;
strFormat.FormatV(pFormatString, vl); AfxMessageBox(strFormat);
}
void MessageBoxFormatted(HWND hWnd, LPCTSTR pCaption, LPCTSTR pFormatString, ...)
{
va_list vl;
va_start(vl, pFormatString);<br>
TCHAR strFormat[1024];
_vstprintf(strFormat, pFormatString, vl);<br>
::MessageBox(hWnd, strFormat, pCaption,MB_ICONINFORMATION);
}