how can i convert textbox to string and to make it upper case?? here is my code.. please help..

VB Code:
  1. Dim TextBox1 As String
  2.         Dim a As New DataSet
  3.         Dim b As New OleDb.OleDbDataAdapter
  4.         Dim c As New OleDb.OleDbConnection
  5.         c.ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\phil\wa.mdb;Persist Security Info=true"
  6.         c.Open()
  7.         b.SelectCommand = New OleDb.OleDbCommand("SELECT * FROM Table1 WHERE Fname=" & TextBox1 & ";", c)
  8.         TextBox1.ToUpper()
  9.         b.Fill(a, "Hello")
  10.         DataGrid1.DataSource = a.Tables(0)
  11.         DataGrid1.DataBind()
  12.         c.Close()