Hi, I have 2 links within a datagridview. The 2 links are in the same row, let say link A and link B. How to let link A go to Form A and link B go to Form B?
Private Sub DataGridView1_CellContentClick(ByVal sender As System.Object, ByVal e As System.Windows.Forms.DataGridViewCellEventArgs) Handles DataGridView1.CellContentClick
Me.Hide()
Dim rs As New RstMaintain
rs.Show()
End Sub
My coding above just able to go to one form, but I have no idea to make the 2 links go to different form. Hope someone can help me..