CString::MakeUpper

This method converts this CString object to an upper-case string.

void MakeUpper( ); 

Example

The following example demonstrates the use of CString::MakeUpper.

// example for CString::MakeUpper
CString s( "abc" );
s.MakeUpper();
ASSERT( s == "ABC" );

Requirements

  Windows CE versions: 1.0 and later
  Header file: Declared in Afx.h
  Platform: H/PC Pro, Palm-size PC, Pocket PC

See Also

CString::MakeLower