That sort of makes sense to me....this is where I am right now....I was pointed inthe direction of an "ItemsControl" to format the results of the query...Not sure which method would be suitable for me....If I use teh MouseEnter on the ItemsControl as seen below in Red. I dont thin that is differs which record is selected? Does it? I set it up to simply unhide a window and it worked....when I went over teh records it open the window....but now triyng to figure out if it will actually determine which record I am over? And then highlight that record... <Grid Grid.Column="6" >
<StackPanel Orientation="Vertical" Margin="5" HorizontalAlignment="left" VerticalAlignment="top" >
<Grid x:Name="IdentifyGrid7" HorizontalAlignment="left" VerticalAlignment="Top" Margin="0,2,0,0" MouseEnter="TurnOnIncidents">
<Rectangle Fill="#CC5C90B2" Stroke="Gray" RadiusX="10" RadiusY="10" Margin="0,0,0,0" >
<Rectangle.Effect>
<DropShadowEffect/>
</Rectangle.Effect>
</Rectangle>
<TextBlock x:Name="DataDisplayTitleTop7" HorizontalAlignment="Center" Text="Items Control Search PID" Foreground="White" FontSize="10"
Margin="0,10,0,0" />
<StackPanel Margin="10,27,0,0" Orientation="Vertical" VerticalAlignment="Top" >
<StackPanel Orientation="Horizontal">
<TextBlock x:Name="DataDisplayTitleTop8" HorizontalAlignment="Left" Text="Phone: " Foreground="White" FontSize="10"
Margin="0,0,0,0" />
<TextBlock x:Name="DataDisplayTitleTop9" HorizontalAlignment="Left" Text="763.555.5555" Foreground="White"
Margin="0,0,0,0" >
<TextBlock.Effect>
<DropShadowEffect/>
</TextBlock.Effect>
</TextBlock>
</StackPanel>
</StackPanel>
<StackPanel x:Name="IdentifyResultsPanel7" Height="125" Width="250" Orientation="Vertical" Margin="0,85,0,0" HorizontalAlignment="Center">
<ScrollViewer VerticalScrollBarVisibility="Auto" Width="225" MaxHeight="200" >
<ItemsControl x:Name="MyItemsControls" MouseEnter="EnterItemsControl" >
<ItemsControl.ItemTemplate>
<DataTemplate>
<StackPanel Orientation="Horizontal" VerticalAlignment="Center" >
<StackPanel Margin="1">
<TextBlock Text="{Binding Feature.Attributes[HOUSE_NUMB]}" Foreground="White" FontSize="10" />
</StackPanel>
<StackPanel Margin="5,0,0,0" Orientation="Vertical">
<TextBlock Foreground="White" Text="{Binding Feature.Attributes[PID], StringFormat='PID: \{0\}'}" >
<TextBlock.Effect>
<DropShadowEffect/>
</TextBlock.Effect>
</TextBlock>
<TextBlock Foreground="White" Text="{Binding Feature.Attributes[ADDRESS], StringFormat='Address: \{0\}'}" >
<TextBlock.Effect>
<DropShadowEffect/>
</TextBlock.Effect>
</TextBlock>
</StackPanel>
</StackPanel>
</DataTemplate>
</ItemsControl.ItemTemplate>
</ItemsControl>
</ScrollViewer>
</StackPanel>
</Grid>
</StackPanel>
</Grid>
Private Sub EnterItemsControl(ByVal sender As Object, ByVal e As MouseEventArgs)
ShowTimePanel.Begin()
End Sub