Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Why error 1585 (Update Conflict)?
Message
De
23/07/2004 17:47:37
 
Information générale
Forum:
Visual FoxPro
Catégorie:
Gestionnaire d'écran & Écrans
Divers
Thread ID:
00926357
Message ID:
00927484
Vues:
27
Thanks heavens! I found the culprit line:
= SEEK( This.Value, "Customer", "Code" )   *--> this is where error occurs

WITH THIS.PARENT
   .edtAddress = Customer.Address   ** THIS IS THE CULPRIT! **
   .txtTerms = Customer.Terms
ENDWITH
I had edtAddress' ControlSource as Customer.Address. So, when the code above is executed the Customer.Address field was replace with the same value!

So, the culprit line should be changed to:
= SEEK( This.Value, "Customer", "Code" )   *--> this is where error occurs

WITH THIS.PARENT
   *.edtAddress = Customer.Address   ** THIS IS THE CULPRIT! **
   .edtAddress.Refresh()             ** this is the change... stupid me!
   .txtTerms = Customer.Terms
ENDWITH
Thanks just the same Barbara...

Sincerely,
Dennis
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform