Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
LOCATE not functioning properly
Message
De
22/09/1999 16:10:13
 
 
À
21/09/1999 17:43:50
Ronald Suen
Epic Solutions Inc.
Edmonton, Alberta, Canada
Information générale
Forum:
Visual FoxPro
Catégorie:
Codage, syntaxe et commandes
Divers
Thread ID:
00267352
Message ID:
00267776
Vues:
21
Ronald,
It's not obvious that you have CurrMast currently selected. The fact that you are using RECNO("CurrMast") and FOUND("CurrMast") even suggests it isn't. I'd either change the code to:

lnRecNo = RECNO("CurrMast")
GO TOP IN CurrMast
SET EXACT OFF
=SEEK(UPPER(ALLTRIM(THISFORM.txtCurrID.Value)), "CurrMast")
SET EXACT ON

IF NOT FOUND("CurrMast")
GO lnRecNo IN CurrMast
MsgBox("Currency was not found.",,,16)
RETURN .F.
ENDIF

OR:

SELECT CurrMast
lnRecNo = RECNO()
GO TOP
SET EXACT OFF
SEEK UPPER(ALLTRIM(THISFORM.txtCurrID.Value))
SET EXACT ON

IF NOT FOUND()
GO lnRecNo
MsgBox("Currency was not found.",,,16)
RETURN .F.
ENDIF

Rick
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform