Hey,

I just started programming from home and I'm a little confused. Here's some sample code that I think worked awhile ago:

Code:
	
CString test = "Some Text Here";
int position = test.FindOneOf("0123456789");
This gives me a compile error of :

Code:
error C2664: 'ATL::CStringT<BaseType,StringTraits>::FindOneOf' : cannot convert parameter 1 from 'const char [11]' to 'const wchar_t *'
Any ideas why this doesn't work?

Thanks in advance,
Eric