RE: lingo-l deleting from a text file with fileIO -is this a bug ?

2003-08-28 Thread Kerry Thompson
Hi again, right it simply wasn't working for me so i've eventually stripped it down to what i see is causing the problem.Can anyone offer an explanation for the following. frame script on frame 2 on exitFrame me set schedulefile =new(xtra fileio) createFile(schedulefile,

Re: lingo-l deleting from a text file with fileIO -is this a bug ?

2003-08-28 Thread Charlie Fiskeaux II
Try this order and see if it helps: on exitFrame me schedulefile=new(xtra fileio) openFile(schedulefile, tempschedule.txt, 0) delete(schedulefile) createFile(schedulefile, tempschedule.txt) filestatus=status(schedulefile) alert schedulefile.error(filestatus) delete(schedulefile)