Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Let the 1st item in a combobox have the focus
Message
Information générale
Forum:
Visual FoxPro
Catégorie:
Gestionnaire d'écran & Écrans
Divers
Thread ID:
01201705
Message ID:
01201719
Vues:
21
>>>After populating a combobox, How do I have the 1st item in the combobox get the focus(being highlighted). I've tried
>>>thisform.mycombobox1.Selected(1)=.t.
>>>thisform.mycombobox1.Setfocus
>>>
>>>to no avail.
>>
>>Combobox.listindex=1
>
>I wonder why it's still blank?
>WITH thisform.mycombobox1
> .AddItem( 'N' )
> .AddItem( 'Y' )
> .AddItem( 'NA' )
> ENDWITH
>thisform.mycombobox1.listindex=1

Works for me:
WITH thisform.mycombobox1
     .RowSourceType = 0
     .AddItem( 'N' )
     .AddItem( 'Y' )
     .AddItem( 'NA' )
ENDWITH
thisform.mycombobox1.listindex=1
Against Stupidity the Gods themselves Contend in Vain - Johann Christoph Friedrich von Schiller
The only thing normal about database guys is their tables.
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform