Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Textbox and Listbox nested
Message
 
 
To
25/08/2000 13:31:24
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Miscellaneous
Thread ID:
00409319
Message ID:
00409488
Views:
15
>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."
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform