Populate Datagridviewlinkcolumn with Links

  • Thread starter Thread starter perpetual_dream
  • Start date Start date
P

perpetual_dream

Hello,

I am willing to populate the datagridview with "labellinks" instead of
normal text. I use the following code to populate my datagridview

Code Snippet
Public Sub load_user_workflow_datagrid()

ds.Clear()

ds = Me.workflowprovider.select_user_workflow()

dgflow.DataSource = ds.Tables(0)

dgflow.Columns("workflow_id").Visible = False

dgflow.Columns("doc_id").Visible = False

dgflow.Columns("file_path").Visible = False

dgflow.Columns("name").HeaderText = "Document"

Dim link As New DataGridViewLinkColumn

End Sub

How can I display the "name" column as datagridviewlinkColumn and how
I can catch its actions ?

Thanks in advance
 
Back
Top