Archive for July 3rd, 2008

03
Jul
08

Some new corals

03
Jul
08

Select row on DataGridView right click

This was the suggested way to acomplish a row select from a couple sources:

Private Sub dataGrid1_MouseUp(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles DataGridView1.MouseUp

Dim pt = New Point(e.X, e.Y)

Dim hti As DataGrid.HitTestInfo = DataGridView1.HitTest(pt)

If hti.Type = DataGrid.HitTestType.Cell Then

DataGridView1.CurrentCell = New DataGridCell(hti.Row, hti.Column)

DataGridView1.Select(hti.Row)

End If

End Sub

Continue reading ‘Select row on DataGridView right click’

03
Jul
08

Kiteboarding Lesson 1




 

July 2008
M T W T F S S
« Jun   Aug »
 123456
78910111213
14151617181920
21222324252627
28293031