Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Enter in a text box
Message
 
 
To
20/07/2000 14:11:53
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Miscellaneous
Thread ID:
00393414
Message ID:
00395091
Views:
21
>KeyPress Method
>
>
>LPARAMETERS nKeyCode, nShiftAltCtrl
>
>if nKeyCode = 13
> return add2list()
> thisform.list1.requery()
> thisform.refresh
>endif

Tyler,

The code after return would never be executed... Change it to be

if nKeyCode=13
lReturn=add2list() && BTW, is it the name of program?
thisform.list1.requery()
thisform.refresh()
endif
If it's not broken, fix it until it is.


My Blog
Previous
Reply
Map
View

Click here to load this message in the networking platform