If you're using .NET 2.0 you should use File.ReadAllLines:
Code:
comboBox1.Items.AddRange(System.IO.File.ReadAllLines("file.txt"));
Either way you should always specify your version when posting.