I seem to have lost my original post on this subject. My layer contains a field with a web address that I would like to appear as a hyperlink when the results are shown in an identify datagrid. Given the layer is selected via the code below (taken from the identify sample) how can I parse the datagrid and assign a hyperlink to the field containing an HTTP address? Private Sub cb_SelectionChanged(ByVal sender As Object, ByVal e As SelectionChangedEventArgs)
Dim index As Integer = IdentifyComboBox.SelectedIndex
If index > -1 Then
IdentifyDetailsDataGrid.ItemsSource = _dataItems(index).Data
End If
End Sub
Thanks