Ver Mensaje Individual
  #10 (permalink)  
Antiguo 02/10/2006, 10:48
Avatar de univercity
univercity
 
Fecha de Ingreso: noviembre-2002
Mensajes: 681
Antigüedad: 22 años, 2 meses
Puntos: 0
Ups, sorry...

Aqui esta la modificacion pero me sigue tirando el mismo error

Private Sub MySelect_SelectedIndexChanged(ByVal sender As Object, ByVal e As System.EventArgs)Handles MySelect.SelectedIndexChanged

'Aqui ejecutas la consulta


dim varieda as string = MySelect_SelectedIndexChanged.Value

Dim DS As DataSet
Dim MyCommand As OleDbDataAdapter

MyCommand = New OleDbDataAdapter("select * from vinos where cepa='"&varieda&"'", MyConnection)
DS = new DataSet()
MyCommand.Fill(DS, "vinos")


MyList1.DataTextField= "cepa"
MyList1.DataValueField ="cepa"

MyList1.DataSource= DS.Tables("vinos").DefaultView
MyList1.DataBind()




End sub
__________________
"Lo importante es nunca dejar de hacerse preguntas"
Albert Einstein