In a VB.NET 2010 desktop application, I am using the following new logic to load values into a combo box.
For Each dir In dirAccessFiles cboAccessFile.Items.Add(Path.GetFileNameWithoutExtension(dir)) Next Catch except As Exception Console.WriteLine("The process failed: {0}", e.ToString()) End Try