Ver Mensaje Individual
  #3 (permalink)  
Antiguo 10/02/2006, 09:55
Avatar de ah_puch
ah_puch
 
Fecha de Ingreso: agosto-2005
Ubicación: Ecatepec, México
Mensajes: 180
Antigüedad: 19 años, 4 meses
Puntos: 3
Mensaje

nose muy bien si entendi que es lo que quieres pero asi es como llenas un dropDown y un ListBox.

Public cnx As new SqlConnection("server=Local);database=MiEjemplo;Tr usted_Connection=yes")
Public Adapter AS SqlDataAdapter
Public Ds As New DataSet

Adapter = new SqlDataAdapter(" tu Query")",cnx)
Adapter.fill(Ds,"tabla2")
cnx.close
with DropDown <--- el nombre de tu dropDown

.DataSource = Ds.Tables("tabla2").DefaultView
.DataTextField ="Valor que se vera en el Drop"
.DataValueField ="Valor que tendran los drop"
.DataBind
end With

tambien checa lo que te dice mitico tambien es importante para que tu drop's respondan ante algun evento.
Espero que te sea de ayuda.