Is any to change dbgrid column size. Thanks for help.
You can change the width at design time in the DataGrid Properties. Right click on the grid and choose Properties, it is in the Columns Tab. You can also change the width in code, like this.... VB Code: DataGrid1.Columns(0).Width = 1000 the 0 is the index of the column you want to change.
DataGrid1.Columns(0).Width = 1000
Forum Rules