Icon View Thread

The following is the text of the current message along with any replies.
Messages 1 to 2 of 2 total
Thread External functions
Mon, Aug 9 2010 8:49 AMPermanent Link

Roy Lambert

NLH Associates

Team Elevate Team Elevate

These are my "lightweight" external functions. To make full use of them (eg for scanning word docs etc) you'll need Mike Skolniks SMWord component and Synapse plus the word generator, text filter extensions I've already posted.

Roy Lambert






Attachments: ExternalFunctions.zip
Mon, Aug 9 2010 11:25 AMPermanent Link

Roy Lambert

NLH Associates

Team Elevate Team Elevate

Alter the code in the 'X' section to this

for Cntr := 0 to sl1.Count - 1 do begin
idx := MaxInt;
while idx > -1 do begin
idx := sl.IndexOf(sl1[Cntr]);
if idx > -1 then sl.Delete(idx);
end;
end;


Image