Google

mardi 18 mars 2008

Faut du serieux : VB.net : liste déroulante

Il faut des gens qui sache gérer des listes déroulantes et donc sélectionner un élément spécifique :


Method 1: VB.NET
DropDownList1.SelectedIndex = DropDownList1.Items.IndexOf(DropDownList1.Items.FindByValue())
DropDownList1.SelectedIndex = DropDownList1.Items.IndexOf(DropDownList1.Items.FindByText())


C#
DropDownList1.SelectedIndex = DropDownList1.Items.IndexOf(DropDownList1.Items.FindByValue());
DropDownList1.SelectedIndex = DropDownList1.Items.IndexOf(DropDownList1.Items.FindByText());

Method 2: VB.NET
DropDownList1.Items.FindByText("").Selected = true
DropDownList1.Items.FindByValue("").Selected = true

C#
DropDownList1.Items.FindByText("").Selected = true ;
DropDownList1.Items.FindByValue("").Selected = true ;

Aucun commentaire: