To change it open the AssemblyInfo.cs file, find the following line:
[assembly: ComVisible(false)]and change it to: [assembly: ComVisible(true)]
[assembly: ComVisible(false)]and change it to: [assembly: ComVisible(true)]
Dim types As String() = txtFileTypes.Text.Split(",") For i As Integer = 0 To types.GetLength(0) - 1 Dim im As Image = _ Me.FileSystemImages.SmallImageList.Images( _ FileSystemImages.GetTheFileIconIndex("*." & types(i))) im.Save(Application.StartupPath & "\" & types(i) & ".bmp", _ Imaging.ImageFormat.Bmp) Nextand you have a tool that allows you to retrieve 16x16 icons for different file types.
Dim s1 As String = "" s1 = Replace(s1, "foo", "fee") Dim s2 As String = "" s2 = s2.Replace("foo", "fee")Well, they don't. While the variable s2 remains to be an empty string, s1 is set to Nothing. That's something worth remembering.