i have a code that select the columns in mysql and fill it in a datagridview...
what i want to do is encrypt the 3 column in the datagridview since it is a password...
can you help me???
here is my code
Dim dbDataSet As New DataTable
Dim SDA As New MySqlDataAdapter
Dim bSource As New BindingSource
Try
MySqlConnection.Open()
Dim query As String
query = "select * from mcs.login "
Dim Command As New MySqlCommand(query, MySqlConnection)
SDA.SelectCommand = Command
bSource.DataSource = dbDataSet
DataGridView1.DataSource = bSource
SDA.Update(dbDataSet)
MySqlConnection.Close()
Catch ex As Exception
MessageBox.Show(ex.Message)
Finally
MySqlConnection.Dispose()
End Try