Search found 1290 matches

by BobRichards
Tue Jun 13, 2017 10:16 am
Forum: Integration Development
Topic: VS2017?
Replies: 2
Views: 654

Re: VS2017?

At this time, we do not support it since the SDK would need to be altered.
by BobRichards
Tue Jun 06, 2017 10:57 am
Forum: ProForm (Order Tracking)
Topic: Updating schedule A in commitment
Replies: 1
Views: 2480

Re: Updating schedule A in commitment

Have you had success in opening the order? Have you used the Select Field Code Browser (FCB) to get an understanding of where these properties are located in the order model? (In case you didn't know, you can click the "Track Current Field" button at the top of the FCB then click a field i...
by BobRichards
Thu Jun 01, 2017 5:34 pm
Forum: General
Topic: Get error "Unable to load one or more of the requested types." when building Select Console App
Replies: 4
Views: 1191

Re: Get error "Unable to load one or more of the requested types." when building Select Console App

Now that you know how to find the necessary files in .NET apps in general, let me tell you that the missing file is probably: Microsoft.ApplicationInsights.DLL The requirement for this assembly was added several versions ago and is used by Select. The Visual Studio Project templates installed by the...
by BobRichards
Thu Jun 01, 2017 5:24 pm
Forum: General
Topic: Get error "Unable to load one or more of the requested types." when building Select Console App
Replies: 4
Views: 1191

Re: Get error "Unable to load one or more of the requested types." when building Select Console App

When .NET loads an assembly (DLL or EXE) into your app domain, it must also ask the assembly what other assemblies it needs to function (external dependencies). If it has any external dependencies then the .NET loader will load those assemblies also. (Be aware that individual components within the a...
by BobRichards
Thu Jun 01, 2017 5:05 pm
Forum: General
Topic: Get error "Unable to load one or more of the requested types." when building Select Console App
Replies: 4
Views: 1191

Get error "Unable to load one or more of the requested types." when building Select Console App

The full error is probably: Unable to load one or more of the requested types. Retrieve the LoaderExceptions property for more information. How do I fix it?
by BobRichards
Tue May 30, 2017 3:28 pm
Forum: Custom Order Rules
Topic: Need Help with Validation Rule
Replies: 3
Views: 2001

Re: Need Help with Validation Rule

If you display a message with "args.RaiseWarning()" like we did in the previous message, the user will be able to ignore the warning and save the order anyway. Be aware that you can also use "args.RaiseError()" instead. This will not only display an error on the Errors and Warnin...
by BobRichards
Tue May 30, 2017 3:16 pm
Forum: Custom Order Rules
Topic: Need Help with Validation Rule
Replies: 3
Views: 2001

Re: Need Help with Validation Rule

It is most unfortunate that we have not provided much information to date on how to use Custom Order Rules (CORs). Be aware that the syntax is very different from the Select Formula language since is uses - well - Python. Since Lender is the context in this Validate rule, Select will call this funct...
by BobRichards
Thu May 11, 2017 2:41 pm
Forum: Integration Development
Topic: Get Escrow.OpenedDate on IOrderInfo
Replies: 9
Views: 1495

Re: Get Escrow.OpenedDate on IOrderInfo

Sorry, but would you please start a new thread and describe exactly what you want to achieve? Thanks.
by BobRichards
Mon May 08, 2017 12:13 pm
Forum: Custom Order Rules
Topic: Require Notes every time order is changed
Replies: 1
Views: 1374

Re: Require Notes every time order is changed

Unfortunately this is not possible. There is no single dependency that can be hooked up to trigger a rule to run based on the user saving an order or the state of the order simply "changed".