 
			
				03/11/2004, 09:24
			
			
			     |  
      |    |    |    Fecha de Ingreso: mayo-2004  Ubicación: Guadalajara, Jalisco, México  
						Mensajes: 724
					  Antigüedad: 21 años, 5 meses Puntos: 6     |        |  
  |      Supongo que es para web...   
with Me.MiComboDropDown 
    .DatatextField = "el_campo_de_texto_pe_Nombre" 
    .DataValueField = "el_campo_llave_podria_ser_el_ID_pe_IdUsuario" 
    .DataSource = MiDataset 
    .DataBind() 
end with   
Ahora, si quieres insertar algún valor  seriá asi: 
with Me.MiComboDropDown 
        .Items.Insert(0,"-Ninguno-") 
        .Items(0).value = 0 
end with     
Espero te sirva amigo :)           |