i hv create a table into the datagrid but how i going to resize the column size....
Dim Table1 As New DataTable("Customer")
Dim Row As DataRow
Try
Dim column1 As DataColumn = New DataColum("Customer Name")
column1.DataType = System.Type.GetTyp("System.String")
Table1.Columns.Add(column1)
Dim column2 As DataColumn = New DataColum("Customer Phone")
column2.DataType = System.Type.GetTyp("System.String")
Table1.Columns.Add(column2)
Catch
End Try
dgCustomer.DataSource = Table1