Also, at first glance, 206 Kilobytes seems indeed extremely big for a clipboard. In such instance, Microsoft Word or Excel would display a warning message. If possible, this should rather be addressed through a disk file.
of course, it’s a lot. I want to export the contents of a database table to excel via my own macro in xojo and I was looking for a more elegant way than saving the contents to a file atfirst.
Maybe there is a way to send the data in serveral portions.
[quote=266523:@Christian Hahn]of course, it’s a lot. I want to export the contents of a database table to excel via my own macro in xojo and I was looking for a more elegant way than saving the contents to a file atfirst.
Maybe there is a way to send the data in serveral portions.[/quote]
[quote=266530:@Christian Schmitz]text encoding?
Did you check on what bytes your text has?
could be cut on the first chr(0) character.[/quote]
That’s it, Christian got it. It’s the first chr(0) that cuts the data when sent to clipboard.
I always tried to avoid the appearance of chr(0) when retrieving empty database fields in a datagrid but sometimes one strumbles upon those phenomena.
Thank you very much.