|
-
May 5th, 1999, 11:41 AM
#1
CString Find() error Why ?
When I call the CString member function "Find" the compiler returns
this error..
error C2661: 'Find' : no overloaded function takes 2 parameters
I used the example from (MSDN Library April 1999)
// Second example demonstrating
// CString::Find( TCHAR ch, int nStart )
CString str("The stars are aligned");
int n = str.Find('e', 5);
ASSERT(n == 12);
Is it only available with VC6 ? MS does not mention anything in the
MSDN Library April 1999.
Is VC5 just out of date ?
regards
Hans Wedemeyer

My Web Site
http://www.flash.net/~hansw
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|