Search found 1290 matches

by BobRichards
Mon May 23, 2016 1:22 pm
Forum: General
Topic: Title Insurance Calculations/Underwriter
Replies: 10
Views: 2079

Re: Title Insurance Calculations/Underwriter

Is this impeding you? I assume you can simply overwrite the field since everything is unlocked.
by BobRichards
Mon May 23, 2016 1:05 pm
Forum: General
Topic: Validation Pop Up Warning
Replies: 6
Views: 1483

Adding Errors and Warnings to Errors and Warnings

You can write a rule that writes a value to any custom field and hotspots there. In a shell or server package, you could add/change a contact image but you can't hotspot an image. To hotspot a field (in general), subscribe to the IOrderStore.OrderSaving event. An example of doing this in a server pa...
by BobRichards
Mon May 23, 2016 11:34 am
Forum: Integration Development
Topic: 4.1 Security Error after Upgrade
Replies: 9
Views: 1206

Re: 4.1 Security Error after Upgrade

All Select packages target .NET 4.6 (even though we install 4.6.1 on the target machine). In general, consuming applications must also be built with at least .NET 4.6 since it is possible for Select to return objects that are not defined in prior versions of .NET. Sorry for any omissions.
by BobRichards
Sat May 21, 2016 2:10 pm
Forum: General
Topic: V4 - Formula Update Timing
Replies: 6
Views: 1488

Re: V4 - Formula Update Timing

In case you are tempted, please do not tie Custom Order Rules (CORs) to Register or ProTrust events/queries. Like business rules, the same COR may fire multiple times for any dependency change. However, since they are very fast and you do not even realize this happens. CORs are designed as simple wa...
by BobRichards
Sat May 21, 2016 1:50 pm
Forum: Integration Development
Topic: underwriter name
Replies: 2
Views: 684

Re: underwriter name

Good job! Also, I'm assuming you left out the null check (for contact before you call the ToString() method since FirstOrDefault() can return null) for brevity on the forum. When we post on the forum, we don't include all the checks one should for production code either. I would probably change the ...
by BobRichards
Sat May 21, 2016 12:50 pm
Forum: Integration Development
Topic: 4.1 Print Pipeline IDocument is now IDocumentInfo
Replies: 6
Views: 1246

Re: 4.1 Print Pipeline IDocument is now IDocumentInfo

Which properties from the IDocumentGroup interface do you need?
by BobRichards
Fri May 20, 2016 5:05 pm
Forum: General
Topic: Title Insurance Calculations/Underwriter
Replies: 10
Views: 2079

Re: Title Insurance Calculations/Underwriter

Is there a formula embedded in the field or a Custom Order Rule?
by BobRichards
Fri May 20, 2016 3:39 pm
Forum: General
Topic: Title Insurance Calculations/Underwriter
Replies: 10
Views: 2079

Re: Title Insurance Calculations/Underwriter

If you have successfully done this operation from the Select UI (since you are contemplating doing this manually), you should be able to perform all steps programmatically. How does your manual process differ from you API approach?
by BobRichards
Fri May 20, 2016 11:58 am
Forum: General
Topic: Validation Pop Up Warning
Replies: 6
Views: 1483

Re: Validation Pop Up Warning

Not at this time.
by BobRichards
Tue May 17, 2016 3:02 pm
Forum: General
Topic: Publish Doc updates to select 4.0
Replies: 3
Views: 998

Re: Publish Doc updates to select 4.0

Print job handlers are discussed in the SDK at How-To/Print Pipeline. This includes example code in the "Add a Print Job Handler" topic in that section.