Couldn't find a way to resizing rows..does anyone knows how is it done?

currently doing...

.net2008 Code:
  1. Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
  2.         Cursor.Current = Cursors.WaitCursor
  3.         DataGridEntidades.DataSource = giveDataSet("select CodEntidade AS Cod, NomeEntidade AS Nome, MoradaEntidade AS Morada, Telefone1 AS Contacto from entidades where CodEntidade LIKE '%" & Trim(txtEntidade.Text) & "%' OR NomeEntidade LIKE '%" & Trim(txtEntidade.Text) & "%' OR MoradaEntidade LIKE '%" & Trim(txtEntidade.Text) & "%' OR CPEntidade LIKE '%" & Trim(txtEntidade.Text) & "%' OR Telefone1 LIKE '%" & Trim(txtEntidade.Text) & "%' ORDER BY NomeEntidade")
  4.         'DataGridEntidades.Refresh()
  5.         Cursor.Current = Cursors.Default
  6.     End Sub

Frustrated attempt resizing columns...
.net 2008 Code:
  1. Try
  2.             Dim ts As New DataGridTableStyle
  3.             ts.MappingName = "Entidades"
  4.             DataGridEntidades.TableStyles.Clear()
  5.             DataGridEntidades.TableStyles.Add(ts)
  6.             DataGridEntidades.TableStyles("Entidades").GridColumnStyles(1).Width = 10
  7.         Catch ex As Exception
  8.             '
  9.         End Try

Does anyone has any clue why is this happening?
Thanks