Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Enter in a text box
Message
 
 
À
20/07/2000 14:11:53
Information générale
Forum:
Visual FoxPro
Catégorie:
Codage, syntaxe et commandes
Divers
Thread ID:
00393414
Message ID:
00395091
Vues:
11
>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
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform