hy im very newbie with VB.net 2010
i want to search/filter my datagridview with textbox
i use this to connect mysql and datagridview
dbconn = New MySqlConnection("server=localhost ;database=login")
Try
dbconn.Open()
Catch ex As Exception
MsgBox("Connection Error")
Close()
End Try
Dim table As New DataTable()
dbdata = New MySqlDataAdapter("SELECT * FROM pengguna", dbconn)
dbdata.Fill(table)
DGV.DataSource = table
DGV.Refresh()