Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Textbox and Listbox nested
Message
 
À
25/08/2000 13:31:24
Information générale
Forum:
Visual FoxPro
Catégorie:
Codage, syntaxe et commandes
Divers
Thread ID:
00409319
Message ID:
00409488
Vues:
16
>In order to select a full name in form I have textbox for the name and listbox in other place in form for the first name.
>
>The listbox is only activated if more than one first name (for a name) exists like that :

Minimal adjustment:


texbox.ini()
local oLstBox
thisform.addobject("oLstBox","listbox")
thisform.oLstBox.tabindex = this.tabindex + 1
others properties defined here

and textbox.lostfocus()
Xnam = Enf.nam

Scan rest while Xnam = Enf.nam
thisform.oLstBox.additem(Enf.lastname)
endscan

if thisform.oLstBox.listcount > 1
thisform.oLstBox.visible = .T. && or enabled
else
Thisform.oLstBox.clear
Thisform.oLstBox.visible = .F.
endif


>With textbox.keypress(), I can make a choice of name in all case.
>All are OK, excepts that, in appropriate case, listbox appears and disappears without any possibilities to make a choice.
>
>Where is my mistake ?
>Thanks a lot.
JESS S. BANAGA
Project Leader - SDD division
...shifting from VFP to C#.Net

CHARISMA simply means: "Be more concerned about making others feel good about themselves than you are in making them feel good about you."
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform