Thanks Mike! It worked here's my vb.net code in Visual Studio if anyone ever needs to do the same:
<p> Private Sub DataGridView1_CellContentDoubleClick(sender As System.Object, e As System.Windows.Forms.DataGridViewCellEventArgs) Handles DataGridView1.CellContentDoubleClick Dim GridRow As DataGridViewRow = DataGridView1.CurrentRow Dim SLXString As String SLXString = "slx:ACCOUNT/" & CStr(GridRow.Cells.Item("SLXID").Value) Process.Start(SLXString)
|