Oct 14, 2005 #1 ftpdoo Programmer Aug 9, 2001 202 GB I have a file name psFileName the contains the value "file/1" But a "/" can't be part of a filename.. How can i replace the "/" with a "-"?? Thanks in advance..
I have a file name psFileName the contains the value "file/1" But a "/" can't be part of a filename.. How can i replace the "/" with a "-"?? Thanks in advance..
Oct 14, 2005 1 #2 guitardave78 Programmer Sep 5, 2001 1,294 GB Code: psFileName = replace(psFileName,"/","-") }...the bane of my life! http://www.fuzzyd.co.uk Upvote 0 Downvote