Hi,
The trick to these situations is to use a regular expression based search and replace. Try this on the command line:
c/\t/\n/u
The 'c' is for the Change command; the slashes delimit the search string, replacement and options; the \t and \n are tab and newline; the 'u' at the end instructs SlickEdit to use "UNIX" style regular expressions. Check the online help for a list of regular expression characters.
John Hurst
Wellington, New Zealand