Owen Watson wrote: > No mention of the clip ToFile bug.
> At 06:14 29/11/04, you wrote: >>PowerPro beta 4.1.03 available at >> >>http://powerpro.webeddie.com/download/ppro4103.zip There is no "clip ToFile bug". As already explained in Bruce's message in the "Re: Clip to file bug?" thread, that is an enhancement rather than a bug, sensibly assuming that if you copy an empty clipboard to a new file with "clip ToFile" you would want to be told about it. Bruce wrote: > I'll look at an option saying to write empty clipboard to empty file but didn't say it would be in 4.1.03 Meanwhile, there are easy workarounds if you don't like how Clip ToFile works when there is no text on the clipboard: If you don't want the error message nor an empty file: if(clip) clip tofile c:\folder\newfilename.txt Or if you do want an empty file: if(clip) do clip tofile c:\folder\newfilename.txt else [make your empty file here] endif There are several possible substitutions you could use for my line "[make your empty file here]" ---------------------------------------- Or maybe this would suit you better: if(not clip) clip.set("- no clip -") clip tofile c:\folder\newfilename.txt ------------------------ Yahoo! Groups Sponsor --------------------~--> Make a clean sweep of pop-up ads. Yahoo! Companion Toolbar. Now with Pop-Up Blocker. Get it for free! http://us.click.yahoo.com/L5YrjA/eSIIAA/yQLSAA/JV_rlB/TM --------------------------------------------------------------------~-> Attention: PowerPro's Web site has moved: http://www.ppro.org Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/power-pro/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/
