• You could use a script task to read a line from the file.

    using (System.IO.StreamReader rdr = new System.IO.StreamReader(@"C:\Files\out.txt"))

    {

    Dts.Variables["User::TestString"].Value = rdr.ReadLine();

    }

    Russel Loski, MCSE Business Intelligence, Data Platform