System TipThis article applies to a different operating system than the one you are using. Article content that may not be relevant to you is disabled.
This article was previously published under Q319340
For a Microsoft Visual C# .NET version of this article, see 319350
(http://support.microsoft.com/kb/319350/
)
.
Add the following code at the beginning of the Form1.vb file.
Imports System.Runtime.InteropServices
Add the following code in the Form1 class after the INHERITS statement.
Private Structure SHFILEINFO
Public hIcon As IntPtr ' : icon
Public iIcon As Integer ' : icondex
Public dwAttributes As Integer ' : SFGAO_ flags
<MarshalAs(UnmanagedType.ByValTStr, SizeConst:=260)> _
Public szDisplayName As String
<MarshalAs(UnmanagedType.ByValTStr, SizeConst:=80)> _
Public szTypeName As String
End Structure
Private Declare Ansi Function SHGetFileInfo Lib "shell32.dll" (ByVal pszPath As String, _
ByVal dwFileAttributes As Integer, ByRef psfi As SHFILEINFO, ByVal cbFileInfo As Integer, _
ByVal uFlags As Integer) As IntPtr
Private Const SHGFI_ICON = &H100
Private Const SHGFI_SMALLICON = &H1
Private Const SHGFI_LARGEICON = &H0 ' Large icon
Private nIndex = 0
Add a listView control, a button control, and an imageList control to the form. The default names are ListView1, Button1, and ImageList1 respectively.
In the Properties window of Button1, set the button text to Select a File, and then add the following code in the Button1_click event:
Dim hImgSmall As IntPtr 'The handle to the system image list.
Dim hImgLarge As IntPtr 'The handle to the system image list.
Dim fName As String 'The file name to get the icon from.
Dim shinfo As SHFILEINFO
shinfo = New SHFILEINFO()
Dim openFileDialog1 As OpenFileDialog
openFileDialog1 = New OpenFileDialog()
openFileDialog1.InitialDirectory = "c:\temp\"
openFileDialog1.Filter = "All files (*.*)|*.*"
openFileDialog1.FilterIndex = 2
openFileDialog1.RestoreDirectory = True
listView1.SmallImageList = imageList1
listView1.LargeImageList = ImageList1
shinfo.szDisplayName = New String(Chr(0), 260)
shinfo.szTypeName = New String(Chr(0), 80)
If (openFileDialog1.ShowDialog() = DialogResult.OK) Then
fName = openFileDialog1.FileName
'Use this to get the small icon.
hImgSmall = SHGetFileInfo(fName, 0, shinfo, Marshal.SizeOf(shinfo), _
SHGFI_ICON Or SHGFI_SMALLICON)
'Use this to get the large icon.
'hImgLarge = SHGetFileInfo(fName, 0,
'ref shinfo, (uint)Marshal.SizeOf(shinfo),
'SHGFI_ICON | SHGFI_LARGEICON);
'The icon is returned in the hIcon member of the shinfo struct.
Dim myIcon As System.Drawing.Icon
myIcon = System.Drawing.Icon.FromHandle(shinfo.hIcon)
imageList1.Images.Add(myIcon) 'Add icon to imageList.
listView1.Items.Add(fName, nIndex) 'Add file name and icon to listview.
nIndex = nIndex + 1
End If
Compile the project: on the Build menu, click Build Solution.
Press F5 to run the project.
Click Select a File, and then select a file in the Open dialog box. The name of the file and the icon that is associated with the file appear in the ListView control.
For additional information in a Microsoft Visual C# .NET version of this article, click the article number below
to view the article in the Microsoft Knowledge Base:
319350
(http://support.microsoft.com/kb/319350/EN-US/
)
How To Use the SHGetFileInfo Function To Get the Icons That Are Associated with Files in Visual C# .NET