hello frnds,I m able to insert the icon in ListView Column Header..
Steps-1) Drag the Imagelist.
2) Insert the iamges into the imagelist.
3)Associate the SmallImageList Property of Listview to Imagelist Name.

Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
        Dim lCount As Integer
        Dim lvitem As ListViewItem

        ListView1.Columns(0).ImageIndex = 0
        For lCount = 1 To 5
            lvitem = ListView1.Items.Add(lCount)
            lvitem.SubItems.Add("sonia" & lCount)
            Application.DoEvents()
        Next

    End Sub

    Private Sub ListView1_ColumnClick(ByVal sender As Object, ByVal e As System.Windows.Forms.ColumnClickEventArgs) Handles ListView1.ColumnClick
        If e.Column = 0 Then
            Select Case ListView1.Columns(0).ImageIndex
                Case 0
                    ListView1.Columns(0).ImageIndex = 1
                Case 1
                    ListView1.Columns(0).ImageIndex = 0
            End Select
        End If
    End Sub

When I click on ListView Column Headre..Image Changes Vice-Versa
.

Icon is inserted to the left of the text in Column Header..(See in Pic)..I want the icon to be inserted at the right & text at the left..

What to do??Plz help me out?/

I can't see any icons, can you please clarify the icon by outline it...

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.