// JP opened flex table

Click to See Complete Forum and Search --> : porting to VC 7.0


dlburton
January 22nd, 2002, 08:04 PM
Below is a code snippet I'm trying to convert to VC 7.0.


for ( x = 0 ; ( ( (t = Input.GetAt(x) ) != ' ') && ( x < l3 ) ) ; ++x )
{
ACCUM_ULCMIX_STATUS(t);

if ( CAN_PROPER_STRING )
{
if ( x == ua )
{
if ( TYPE_IS_LOWER(t) )

I'm getting a ambiguous assignment on this:

Temp += (t -32);


else
Temp += t;
}
else
{
if ( TYPE_IS_UPPER(t) )
Temp += (t + 32);
else
Temp += t;
}

Any ideas?

//JP added flex table