Como Preencher um Radio Button com dados do Banco?
Comecei recentemente com VB.NET para aprender, e não consigo preencher as informações do Radio Button com os dados que tenho no Banco.
Try
sql_con = New MySqlConnection("Server = 160.153.33.97;Database=antrax_moonlight;Uid=overpower;Pwd=overpower;")
sql_con.Open()
SQL = "Select * FROM dll where active='1' and own='0'"
command = New MySqlCommand(SQL, sql_con)
DataReader = command.ExecuteReader
While (DataReader.Read())
Cheat1.Text = DataReader.Item("name")
If (2.Text = "2") Then
2.Text = DataReader.Item("name")
End If
If (2.Text = 1.Text) Then
2.Text = DataReader.Item("name")
End If
End While
Catch ex As Exception
Finally
sql_con.Close()
End Try
Testei esse código, porém todos acabam tendo o mesmo nome.
Try
sql_con = New MySqlConnection("Server = 160.153.33.97;Database=antrax_moonlight;Uid=overpower;Pwd=overpower;")
sql_con.Open()
SQL = "Select * FROM dll where active='1' and own='0'"
command = New MySqlCommand(SQL, sql_con)
DataReader = command.ExecuteReader
While (DataReader.Read())
Cheat1.Text = DataReader.Item("name")
If (2.Text = "2") Then
2.Text = DataReader.Item("name")
End If
If (2.Text = 1.Text) Then
2.Text = DataReader.Item("name")
End If
End While
Catch ex As Exception
Finally
sql_con.Close()
End Try
Testei esse código, porém todos acabam tendo o mesmo nome.
Caio Cinel
Curtidas 0