Este es el código:
Código PHP:
Dim monReader As System.Data.Odbc.OdbcDataReader
OdbcConnection1.Open()
OdbcCommand1.CommandType = CommandType.Text
OdbcCommand1.CommandText = "SELECT * FROM `web_articulo`"
monReader = OdbcCommand1.ExecuteReader
Do While (monReader.Read())
Me.ListBox1.Items.Add(monReader.GetString(0))
Loop
OdbcConnection1.Close()