Search found 1290 matches

by BobRichards
Thu Nov 24, 2016 2:55 pm
Forum: Integration Development
Topic: Changing the default server select points to
Replies: 1
Views: 472

Re: Changing the default server select points to

Press and hold the CTRL key then double-click the Select application icon. You will be presented with a Server selection dialog.

A list of hot keys is available in the SDK, but unfortunately it is buried: Cookbook/Developer Tools/What Keyboard Shortcuts are most useful for Developers?
by BobRichards
Tue Nov 08, 2016 2:32 pm
Forum: Integration Development
Topic: Problems accessing PreviousOrder from OrderSavingEventArgs
Replies: 1
Views: 449

Re: Problems accessing PreviousOrder from OrderSavingEventAr

The previous order is only available on Server packages. In the shell package, you have to manually open the prior order version. This feature is made available on the Server since it is essentially available for "free" since Select gets the prior order version during the order save and ty...
by BobRichards
Thu Nov 03, 2016 11:11 am
Forum: Integration Development
Topic: Error opening up SoftPro order
Replies: 1
Views: 535

Re: Error opening up SoftPro order

It appears that TaxGrossUp_121212# does not exist or it does exist and its context is NOT the Order. Can you verify that the custom property TaxGrossUp_121212# shows up on the Order context in the Field Browser or SPAdmin. Examine that the Web API uses the same code to read/write the property as the...
by BobRichards
Mon Oct 31, 2016 12:17 pm
Forum: Integration Development
Topic: Is there a way to disable all Lookup for ZIP
Replies: 5
Views: 792

Re: Is there a way to disable all Lookup for ZIP

Possibilities: Lookup tables are enabled for specific profiles and the profiles descendants. If a table includes the Default profile, then it will be active for all profiles. Instead, remove the Default profile from the table and add the profiles you want to perform disambiguation on. You can disabl...
by BobRichards
Fri Oct 28, 2016 1:40 pm
Forum: Integration Development
Topic: Monitoring for last transaction to be disbursed
Replies: 4
Views: 778

Re: Monitoring for last transaction to be disbursed

Sorry that we are taking a while to answer your question. However, I want you to know that a developer has been assigned to look into this and you have not been forgotten.
by BobRichards
Thu Oct 27, 2016 11:52 am
Forum: Integration Development
Topic: Is there a way to disable all Lookup for ZIP
Replies: 5
Views: 792

Re: Is there a way to disable all Lookup for ZIP

Removing Select's default handlers is not a supported activity!

What is a specific example of your use case?
by BobRichards
Thu Oct 27, 2016 11:21 am
Forum: Server
Topic: Notification Registration not working
Replies: 2
Views: 3099

Re: Notification Registration not working

Sorry. We had typos in the SDK and it will be fixed. Also, do not add the <?xml ...> element at the top of the file since it will cause the subscription to fail (with an error message). The corrected version of your subscription is: <Subscriptions xmlns="http://schemas.softprocorp.com/select/no...
by BobRichards
Thu Oct 27, 2016 10:39 am
Forum: General
Topic: Contact Field Requirements (4.1.6.1)
Replies: 3
Views: 834

Re: Contact Field Requirements (4.1.6.1)

The hint in the stack trace is the validation of the Principal "Name" property. In the inheritance chain, Buyers and Sellers derive from Principal. Its logic will append the name fields to form the Contact.Name. In the case of a Joint type Buyer/Seller (for example), if you set each of the...
by BobRichards
Thu Oct 27, 2016 9:59 am
Forum: Integration Development
Topic: Is there a way to disable all Lookup for ZIP
Replies: 5
Views: 792

Re: Is there a way to disable all Lookup for ZIP

If you are referring to the lookup's DisambiguateLookupRow event, then you cannot selectively disable it for some lookups and not others.
by BobRichards
Thu Oct 27, 2016 9:49 am
Forum: Integration Development
Topic: Correct way to retrieve a sum of the earnest money deposits
Replies: 1
Views: 484

Re: Correct way to retrieve a sum of the earnest money depos

Dynamic types are handy tool and we use them also. However, all types used in LINQ expression must be resolved at compile time (even when using dynamic types) and the c# compiler cannot see the most of the types in the Select order model so it might guess incorrectly (or usually throws up its hands ...