hey! Im using vb6 and access to create a search form.
A flexigrid reterives data from database. There is one column named images in which address of different pictures are shown as hyperlink.
The problem is when i click on any hyperlink cell, the whole row gets blank rather then opening the link.
Does someone has any idea how should i rectify it.
And im using SHELL command to open the link on grids click event as:
Private Sub Grid2_Click()
If Grid2.Col = 8 Then
Call Shell("C:\Windo ws\system32\msp aint.exe " & Grid2.Text, vbNormalFocus)
End If
End Sub
''''where col 8 is the respective image col of hyperlinks
A flexigrid reterives data from database. There is one column named images in which address of different pictures are shown as hyperlink.
The problem is when i click on any hyperlink cell, the whole row gets blank rather then opening the link.
Does someone has any idea how should i rectify it.
And im using SHELL command to open the link on grids click event as:
Private Sub Grid2_Click()
If Grid2.Col = 8 Then
Call Shell("C:\Windo ws\system32\msp aint.exe " & Grid2.Text, vbNormalFocus)
End If
End Sub
''''where col 8 is the respective image col of hyperlinks