Thanks, it worked!
H
hlortie
@hlortie
Posts
-
DataGrid ParentRow -
Hide a datagrid column in VB .NET 2003I've found the way to do it: 'Assign style to datagrid tStyle.MappingName = datagrid.DataMember datagrid.TableStyles.Add(tStyle) 'Hide column datagrid.TableStyles("Table_name").GridColumnStyles("column_name").Width = 0
-
DataGrid ParentRowHi! I'm trying to select an entire row of a datagrid with the index number of the row. When I use the .select method of the datagrid, it only selects the row and the ParentRow selector(the little arrow on the left of the row) does not move to the row. Is there any way to make this work? thanks! Hugo
-
Hide a datagrid column in VB .NET 2003Hi! I have a datagrid filled with a dataset table. I would like to know if it is possible to hide a one of the datagrid column? thanks! Hugo