Hi !

I'm able to set the differetns column's name of a datadrid but not the width. How can i do that?

Here's my code how i adjust the column name:

Dim adoDRCurrentRow As DataRow
Dim adoDCEffetsIdentifies As New DataColumn

adoDCEffetsIdentifies = CType(_adodtCheque, DataTable).Columns(0)
adoDCEffetsIdentifies.ColumnName = "DATE COMPTABLE"

adoDCEffetsIdentifies = CType(_adodtCheque, DataTable).Columns(1)
adoDCEffetsIdentifies.ColumnName = "NO REF"

Thanks