Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Why error 1585 (Update Conflict)?
Message
From
23/07/2004 17:47:37
 
General information
Forum:
Visual FoxPro
Category:
Forms & Form designer
Miscellaneous
Thread ID:
00926357
Message ID:
00927484
Views:
28
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
Previous
Reply
Map
View

Click here to load this message in the networking platform