You need to sign in to do that
Don't have an account?
Update Contact Error
Hello,
I am trying to update a contact from a VB.NET project using this code...
Dim updateContact As SalesForce.Contact = New SalesForce.Contact
updateContact.Id = ResultRecord(EditingID).InternalID
Dim errorContact As SalesForce.Contact = New SalesForce.Contact
errorContact.Id = "s:dlfk"
Dim SaveResults As SalesForce.SaveResult = binding.update(New SalesForce.sObject() {updateContact, errorContact})
I receive the following error once typing in the code in
(1090): Value of type '1-dimensional array of SalesForce_Editor.SalesForce.SaveResult' cannot be converted to 'SalesForce_Editor.SalesForce.SaveResult'.
I have checked this code against the sample code that can be downloaded and there appears to be no difference - aside from the obvious one that the sample code updates an Account but I have previously made this code work in another project?
Can anyone help ??
Thanx in advance.
Dim SaveResults() As SalesForce.SaveResult = binding.update(New SalesForce.sObject() {updateContact, errorContact})
Hi there,
I guess the '1 Dimension' reference in the error should have given me a clue!
Haven't had an error after typing that in so will give it a run and see what happens!
Thanks for your help!
JT