Extract Filenames From An ImageList Using VB.NET

This tutorial will teach you how to create a program that can extract filenames from an ImageList using VB. Now, let's start this tutorial! 1. Let's start with creating a Windows Form Application for this tutorial by following the following steps in Microsoft Visual Studio: Go to File, click New Project, and choose Windows Application. 2. Next, add only one Button named Button1 , ListBox named ListBox1, and an ImageList . You must design your interface like this: output 3. We will need to put images from the ImageList. output 4. Now, lets do the coding! We will first rename the text of the button and the title of the form in our Form_Load.
  1.     Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
  2.         With Me
  3.             .CenterToScreen()
  4.             .Text = "ImageList - Extract filenames"
  5.             .Button1.Text = "Extract"
  6.         End With
  7.     End Sub
Then we will create a function named GetFilenamesInImageList to extract all the filenames from the imagelist.
  1.     Private Function GetFilenamesInImageList(ByVal il As ImageList) As List(Of String)
  2.         Dim List As New List(Of String)
  3.         Dim Count As Integer = il.Images.Count()
  4.         Try
  5.             If Count > 0 Then
  6.                 For Each Filenames As String In il.Images.Keys
  7.                     List.Add(Filenames)
  8.                 Next
  9.             Else
  10.                 List = Nothing
  11.             End If
  12.         Catch
  13.         End Try
  14.         Return List
  15.     End Function
Lastly, we will code for the Button_Click. This will use the function that we have created above to extract the filenames on the imagelist.
  1.     Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
  2.         If (GetFilenamesInImageList(Me.ImageList1)) IsNot Nothing Then
  3.             Me.ListBox1.Items.AddRange(GetFilenamesInImageList(Me.ImageList1).ToArray())
  4.         End If
  5.     End Sub

Output:

output For more inquiries and need programmer for your thesis systems in any kind of programming languages, just contact my number below. Best Regards, Engr. Lyndon Bermoy IT Instructor/System Developer/Android Developer/Freelance Programmer Mobile: 09488225971 Landline: 826-9296 E-mail:[email protected] Add and Follow me on Facebook: https://www.facebook.com/donzzsky Visit and like my page on Facebook at: https://www.facebook.com/BermzISware

Add new comment