|
-
Jan 3rd, 2004, 02:41 PM
#1
Thread Starter
Hyperactive Member
catch "double click" in datagrid column header cell
Dim pt As Point
Dim hti As DataGrid.HitTestInfo
pt = DataGrid1.PointToClient(Cursor.Position)
hti = DataGrid1.HitTest(pt)
If (hti.Type = DataGrid.HitTestType.ColumnHeader) Then
Messagebox.Show("double clicked")
End If
It says hti.type is 'none'
This code was available on syncfusion.com. I am not able to find out why it says none.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|