well simple to some of you lot.



is it possible to resize the width of columns within a datagrid ie col 1 = 50
col 2 = 225
col 3 = 75

also is it possible to make the entire row selectable and clickable,
at the moment to get a datagrid_navigate I need to select on the left hand side, i would like to be able to select any part of that row and benefit from the click

heres my dg_navigate code

Private Sub DataGrid1_Navigate(ByVal sender As System.Object, ByVal ne As System.EventArgs) Handles DataGrid1.Click
Dim dv As DataView = m_DataSet1.Tables("CustomerDomains").DefaultView
Dim parent As MainApp = CType(Me.MdiParent, MainApp)
m_intDomainRecordId = dv.Item(DataGrid1.CurrentRowIndex)("Id")
ShowDetails()
'MsgBox(dv.Item(DataGrid1.CurrentRowIndex)("Id"))
End Sub



cheers peps