How is it possible to replace \ with \\ in a string containing a full filename?
is there any elegant way to do that?
great thanks
Printable View
How is it possible to replace \ with \\ in a string containing a full filename?
is there any elegant way to do that?
great thanks
If you have VB6 it's a snitch.
Good luck!Code:sFileName = Replace$(sFileName, "\", "\\")
thanks man, some things are too easy apparently ;-)