Microsoft Foundation Classes (mfc.hlp) (Table of Contents; Topic list)
CString::MakeUpper
CString                                     Up Contents Index Back
──Microsoft Foundation Classes──────────────────────────────────────────────
 
  void MakeUpper();
 
  Remarks
 
  Converts this CString object to an uppercase string.
 
  Example
 
  CString s( "abc" );
  s.MakeUpper();
  ASSERT( s == "ABC" );
 
 
  See Also
 
  CString::MakeLower
 
 
                                     -♦-