Re: [xHarbour-developers] Another one

2016-08-17 Thread Ron Pinkas
>> Simply avoiding the ambiguity, either by changing the line to : >> >>MYSAY … ROW … COL … >> >> Note the ORDER! > > Ok, this way: > > MYSAY &( "cVar" + LTRIM( STR( n ) ) ) ROW 12 COL 0 Yes. >> Also you can so round the & exp with () this too will remove the ambiguity. > > Do you mean t

Re: [xHarbour-developers] Another one

2016-08-17 Thread Enrico Maria Giordano
Il 17/08/2016 19:38, Ron Pinkas ha scritto: > Simply avoiding the ambiguity, either by changing the line to : > > MYSAY … ROW … COL … > > Note the ORDER! Ok, this way: MYSAY &( "cVar" + LTRIM( STR( n ) ) ) ROW 12 COL 0 > Also you can so round the & exp with () this too will remove the amb