'Allow the user to interact with the selected features
'displayed in the Grid. Have the user's selections
'trigger other actions like Highlight, InsertPin, Pan, and ZoomTo.
frmFind.grdFeatList.SelStartCol = 0
frmFind.grdFeatList.SelEndCol = 2
If frmFind.grdFeatList.SelEndRow > frmFind.grdFeatList.SelStartRow Then
frmFind.grdFeatList.SelEndRow = frmFind.grdFeatList.SelStartRow
End If
If frmFind.grdFeatList.SelStartRow > 0 Then
frmFind.cmdHighlight.Enabled = True
frmFind.cmdInsertPin.Enabled = True
frmFind.cmdPanto.Enabled = True
frmFind.cmdZoomto.Enabled = True
Else
frmFind.cmdHighlight.Enabled = False
frmFind.cmdPanto.Enabled = False
frmFind.cmdZoomto.Enabled = False
frmFind.cmdInsertPin.Enabled = False
End If