Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Textbox and Listbox nested
Message
From
25/08/2000 13:31:24
 
 
To
All
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Title:
Textbox and Listbox nested
Miscellaneous
Thread ID:
00409319
Message ID:
00409319
Views:
70
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 :

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
endif

Thisform.oLstBox.clear
Thisform.oLstBox.visible = .F.


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.
Next
Reply
Map
View

Click here to load this message in the networking platform