Hi Ruslan, On Feb 12, 2004, at 8:53 AM, Ruslan Zasukhin wrote: > "ImportText( > File as FolderItem, > FieldDelimeter as String = "\t", > LineDelimeter as String = "\r" )" > > > Is this syntax correct in RB ? > > I need specify TAB symbol and CR. No. You need to use chr() commands. Tab = chr(9) CR = chr(13) Best regards, Frank