the solution :
AddHandler Me.dataGrid1.MouseWheel, addressof dataGrid1_MouseWheel
Private Sub dataGrid1_MouseWheel(ByVal sender As Object, ByVal e As
MouseEventArgs)
Me.dataGrid1.Select()
End Sub
"Marcel Sengers" wrote:
Hi folks.
I have a problem with a Datatgrid.
When my User selects a row in the Datagrid he is able to scroll through the
Grid by using the Mousewheel.
The prob is that when the selectedrow is scrolled out of the grid u cannot
use the mousewheel to scroll anymore.
Does anyone know zhis prob and maybe has a solution?