--
You received this message because you are subscribed to the Google Groups "OpenROAD Users Mailing List" group.
To unsubscribe from this group and stop receiving emails from it, send an email to openroad-users+unsubscribe@googlegroups.com.
To post to this group, send email to openroad-users@googlegroups.com.
Visit this group at https://groups.google.com/group/openroad-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/openroad-users/50be238b-e89a-4561-b4d7-09fff9fd49d7%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
The later versions of Ingres have native CSV capability so you do not need to worry about embedded commas etc:

--
To unsubscribe from this group and stop receiving emails
from it, send an email to openroad-user...@googlegroups.com.
To post to this group, send email to openroa...@googlegroups.com.
Visit this group at https://groups.google.com/group/openroad-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/openroad-users/50be238b-e89a-4561-b4d7-09fff9fd49d7%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to the Google Groups
"OpenROAD Users Mailing List" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to openroad-user...@googlegroups.com.
To post to this group, send email to openroa...@googlegroups.com.
Visit this group at https://groups.google.com/group/openroad-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/openroad-users/CAADHqjyBj4syt3sMq20uPin38K%2Bq9dgVSevSE%2Bo40uQWEysEqg%40mail.gmail.com.
To unsubscribe from this group and stop receiving emails from it, send an email to openroad-user...@googlegroups.com.
To post to this group, send email to openroa...@googlegroups.com.
.
To view this discussion on the web visit https://groups.google.com/d/msgid/openroad-users/01b201d21ae4%24a9a34180%24fce9c480%24%40demon.co.uk.
For more options, visit https://groups.google.com/d/optout.
This communication is for use by the intended recipient and contains
information that may be Privileged, confidential or copyrighted under
applicable law. If you are not the intended recipient, you are hereby
formally notified that any use, copying or distribution of this e-mail,
in whole or in part, is strictly prohibited. Please notify the sender by
return e-mail and delete this e-mail from your system. Unless explicitly
and conspicuously designated as "E-Contract Intended", this e-mail does
not constitute a contract offer, a contract amendment, or an acceptance
of a contract offer. This e-mail does not constitute a consent to the
use of sender's contact information for direct marketing purposes or for
transfers of data to third parties.
Francais Deutsch Italiano Espanol Portugues Japanese Chinese Korean
Hi Rogelio,
That is great work. Thank you for your effort.
You might consider reducing the frequency of status updates and curframe.flush() to help speed up the routine and reduce network traffic if user is accessing the UI from remote connection. Also I suggest remove frame flush out of the inner loop.
for i = 1 to arr.lastrow do
PercentageCounter = PercentageCounter - 1;
if PercentageCounter <= 0 then
PercentageCounter=arr.lastrow / 10;
cFrame.statustext = 'Status: Cleaning Entries of NEWLINE and TAB :: ' + ifnull(trim(char(i)),'0')+'/'+ifnull(trim(char(arr.lastrow)),'0') +
' >> '+ifnull(squeeze(char(100*i/arr.lastrow)),'0')+'%';
:cFrame.flush();
endif;
…
Suggest also you might have better performance if you use _StringTokenSub
https://groups.google.com/forum/#!topic/openroad-users/NVfgcfA5b_E
From: 'Engr. Rogelio Jr. Burgos' via OpenROAD
Users Mailing List [mailto:openroa...@googlegroups.com]
Sent: Tuesday, 11 October 2016 2:33 PM
To: openroa...@googlegroups.com
Subject: Re: [openroad-users] Fastest way to Export data into Excel
File.
Good day! As per experience, copying data to Excel cell by cell takes a lot of time to finish. And Sir Allan is correct in saying that placing your data in a tablefield and copying it the clipboard is the way to go. In my latest project I have created a procedure for copying any tablefield to an Excel file, and I had to rewrite the code (to make use of the clipboard) because of the time it took copying data per cell to Excel.