Use a For..Next loop, but start at the end of the line and work backwards to the start of the line.
Use Mid$() to check if the character is a '\' and if so, note the position.
Grab the whole line from the start to that position -1 into a string.
Grab the line from that position +1 to the end of the line in another string.
Add Chr$(13) + Chr$(10) to the end of the first string and add the second string on the end of the result.
It's slightly different if you are using a string array though...
TDK_Man