Hi all
If I run the following code
= Adbobjects(laTables, 'Table')
= Asort(laTables)
_Cliptext = ""
* The array has 365 rows
For lnTable = 1 To Alen(laTables)
Use (Right(Juststem(loData),1) + "_" + laTables(lnTable))
_Cliptext = _Cliptext + Padr(laTables(lnTable),20) + Replicate(Chr(9),2) + Str(Reccount(),10,0) + Chr(13)
Endfor
? MemLines(_Cliptext)
* _Cliptext only has 357 lines
But if I use a variable lcCliptext instead of _Cliptext all is well (lcCliptext has 365 lines). It is as if _Cliptext can't keep up ...
Paul Newton