Search found 1290 matches

by BobRichards
Mon Feb 08, 2016 11:39 am
Forum: Shell (User Interface)
Topic: How to work with SoftPro.Select.Client.Runtime namespace
Replies: 2
Views: 819

Re: How to work with SoftPro.Select.Client.Runtime namespace

The ILicensing service has all that you need to get the total number of license your enterprise owns and who currently has them in use. SelectServer ss = GetService<SelectServer>(); ILicensing lic = ss.GetService<ILicensing>(); // Maximum number of seats available for each product. List<ILicenseKey>...
by BobRichards
Mon Feb 08, 2016 11:27 am
Forum: Integration Development
Topic: OpenOrder Object reference not set to an instance of an obje
Replies: 9
Views: 1384

Re: OpenOrder Object reference not set to an instance of an

I'm afraid I need a little more information. Does this fail often? What is the function of "SPSelectService" and why do you need it the second time since you authenticated to Select on the first instance?
by BobRichards
Wed Jan 27, 2016 2:50 pm
Forum: General
Topic: Question on DB fields
Replies: 4
Views: 1033

Re: Question on DB fields

One or two # symbols are appended to the Field Code names for Custom Fields. These are created through the SPAdmin management console (ProForm/Custom Fields). Third party integrations sometimes add additional Custom Fields for proprietary shell/server packages or other reasons. Fields that do not ha...
by BobRichards
Tue Jan 26, 2016 11:18 am
Forum: Integration Development
Topic: Task Changed notifications?
Replies: 4
Views: 807

Re: Task Changed notifications?

Notifications can have different response parameters. You can look up the schema for the notification response by looking up the Notification in the database table SelectDb.core.ServiceEvent. Note that the SelectDb database may have been renamed in your system during installation.
by BobRichards
Sun Jan 24, 2016 11:11 pm
Forum: Integration Development
Topic: Task Changed notifications?
Replies: 4
Views: 807

Re: Task Changed notifications?

You can get a list of all notification sources by using sps.exe. See the SDK topic at How-To --> Subscribe to Notifications for instructions.
by BobRichards
Wed Jan 20, 2016 2:22 pm
Forum: Installation and Setup
Topic: Unattended Select Client Installation?
Replies: 1
Views: 1162

Re: Unattended Select Client Installation?

Doing a silent Client install assumes that you already have the appropriate .NET framework installed. To install silently, execute the following command on the MSI in the Client folder of our distribution package.

Code: Select all

msiexec /i Client.msi /qn RUNMSI=1
by BobRichards
Wed Jan 20, 2016 11:56 am
Forum: Crystal Report Development
Topic: register screen - Revenue by billcode
Replies: 1
Views: 2235

Re: register screen - Revenue by billcode

There is no attached script. Please repost if you are still having problems.
by BobRichards
Tue Jan 19, 2016 4:02 pm
Forum: Integration Development
Topic: Custom Business Rules
Replies: 9
Views: 1550

Re: Custom Business Rules

Here is a rule for you. It enforces that the amount of the OP premium sent by the TIPs screen is not altered - but it does allow the user to move it between columns (from Borrower-Paid at Closing to Borrower-Paid at Closing, etc.) and split the amount between different between different columns as i...
by BobRichards
Mon Jan 18, 2016 2:23 pm
Forum: Crystal Report Development
Topic: Requested tasks
Replies: 1
Views: 2301

Re: Requested tasks

You will need to subscribe to the TasksChanged notification that is provided by Select when a new task is created or changed. See the SDK topic "How-To --> Subscribe to Notifications" for information on registering for events. I am not aware of a way to do this from the SQL tables.
by BobRichards
Mon Jan 18, 2016 12:30 pm
Forum: Integration Development
Topic: AddError for Order Type
Replies: 2
Views: 534

Re: AddError for Order Type

Can you post your code for this area?