Re: error C2106: '=' : left operand must be l-value
Quote:
Originally Posted by
Lvalera
I will try,
thanks a lot...
See my post #13
Re: error C2106: '=' : left operand must be l-value
Quote:
Originally Posted by
Lvalera
...
so what I need the part "some_folder" extracted and been a CString
You may want to look at the MSDN Path... functioons
Re: error C2106: '=' : left operand must be l-value
use SetAt
error message explains all as is
Re: error C2106: '=' : left operand must be l-value
shortly workin code is
CString w('a',20);
w.SetAt(17,'x');
cout <<w[17];
your's is wrong