Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Incremental search in text box
Message
From
06/01/1999 07:56:42
Vinod Parwani
United Creations L.L.C.
Ad-Dulayl, Jordan
 
 
To
All
General information
Forum:
Visual FoxPro
Category:
Forms & Form designer
Title:
Incremental search in text box
Miscellaneous
Thread ID:
00173082
Message ID:
00173082
Views:
111
I'm trying to make a incremental search text box.. where I want to update a list box with the values which matches what user is typing..

currently I've written following code in keypress of textbox..

IF between(nKeyCode,32,126)

lcValue = lcValue + chr(nKeyCode)

ENDIF

IF nKeyCode = 127

lcValue = leftc(lcValue,len(lcValue)-1)

ENDIF

the problem is, if a user presses home key and delete then the lcvalue is not properly updated...

Actually I want the correct value as soon as the user presses any key in keypress event..

Pls help..
Next
Reply
Map
View

Click here to load this message in the networking platform