Click here to Skip to main content
15,897,315 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi everyone.

I hope some one can help me.

I have a project where i had to add a listview at run time using system reflection.

But after that i m not capable of adding columns or add rows.


VB
 Private Sub CreateLVLOGS()
        Dim fullyQualifiedClassName As String = "System.Windows.Forms.ListView"
        Dim o = BuscaInstancia(fullyQualifiedClassName)
      
        Dim LVLOGS = CType(o, Control)
    
        LVLOGS.Top = 205
        LVLOGS.Left = 82
        LVLOGS.BackColor = Color.WhiteSmoke
        LVLOGS.Height = 645
        LVLOGS.Width = 303

        Panel5.Controls.Add(LVLOGS)
       
        AddHandler LVLOGS.ColumnCreating, AddressOf ListView1_ColumnCreating
        'AddHandler LVLOGS.Click, AddressOf AbrirPDfDestino_Click
        'Addhandler LVLOGS.columnclick addressof listview_columnclick

        
       
    End Sub


Private Sub ListView1_ColumnCreating(sender As Object, e As ListViewColumnCreatingEventArgs)
        If e.Column.FieldName = "Name" OrElse e.Column.FieldName = "NAME" Then
            e.Column.Visible = False
        End If

    End Sub


Im not sure what im doing wrong.
If some one could help me please.

Thank you in adavance.
Posted
Comments
saud_a_k 7-Nov-12 4:14am    
Shouldnt it be Dim LVLOGS = CType(o, System.Windows.Forms.ListView)

1 solution

Dim LVLOGS = CType(o, System.Windows.Forms.ListView)
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900