Search found 1290 matches

by BobRichards
Thu Jun 09, 2016 7:18 pm
Forum: Integration Development
Topic: /rootSuffix:Exp causes security error
Replies: 4
Views: 732

Re: /rootSuffix:Exp causes security error

When you do a typical client development build, the shell package information is loaded into Windows Registry in the Select version's "Experimental" branch hive (typically for Select 4.1 at HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\SoftPro\Select\4.1Exp) and the "/rootSuffix:Exp" c...
by BobRichards
Thu Jun 09, 2016 5:59 pm
Forum: Crystal Report Development
Topic: SP Image/Attachments
Replies: 3
Views: 2736

Re: SP Image/Attachments

Attachments are retrieved using the Select API. They are not available in SQL.
by BobRichards
Thu Jun 09, 2016 5:50 pm
Forum: Integration Development
Topic: Joins on RequestedTask, SecurityIdentity, and Task table
Replies: 4
Views: 819

Re: Joins on RequestedTask, SecurityIdentity, and Task table

Sorry, but we do not have an example at this time and it would require significant time to put this one together. Work to understand/resolve the SQL error with your code and see if that helps.
by BobRichards
Thu Jun 09, 2016 5:42 pm
Forum: ReadyDoc Development
Topic: Expression Editor (Python) - suppress ReadyDoc Tree folder
Replies: 6
Views: 4090

Re: Expression Editor (Python) - suppress ReadyDoc Tree fold

You can suppress the visibility of documents and document folders (and therefore all the documents in the folder) by following the information posted in our online Help topics at http://help.softprocorp.com/select/v4.1/content/spadmin/managers/readydocs_blocs_and_reports/visibility_conditions.htm . ...
by BobRichards
Thu Jun 09, 2016 5:09 pm
Forum: Integration Development
Topic: Where is SoftPro.ClientModel.Constants.ServerDomain
Replies: 1
Views: 417

Re: Where is SoftPro.ClientModel.Constants.ServerDomain

This is sufficient. NetworkCredential creds = new NetworkCredential("<username>", "<password>", "[SERVER]"); using (SelectServer ss = new SelectServer(new Uri("http://localhost:8080"), creds)) { string reason; if (!ss.TryAuthenticate(out reason)) { // Write lo...
by BobRichards
Wed Jun 01, 2016 1:33 pm
Forum: Shell (User Interface)
Topic: Recent Documents
Replies: 5
Views: 1108

Re: Recent Documents

I looked at the source code and it appears that you are getting the same list whether you log in with IEnvICE or with the Select client. The list is kept in a user AppData folder on the machine the client code runs. Perhaps you are logging in with different IDs or the same user ID but different mach...
by BobRichards
Wed May 25, 2016 4:28 pm
Forum: General
Topic: Web Server-to-Mid-Tier Authentication Issue
Replies: 3
Views: 3935

Re: Web Server-to-Mid-Tier Authentication Issue

It is unfortunate (though a best practice for security reasons) that the the authentication failure message is not helpful. Can you try and remove Active Directory from the equation by setting up a simple Select user/password and see how that works. Are you running the same versions of Select in all...
by BobRichards
Mon May 23, 2016 2:22 pm
Forum: Shell (User Interface)
Topic: Custom Start Page
Replies: 3
Views: 1014

Re: Custom Start Page

Yes. See the Select 4.1 SDK topic How-To/Modify the Start Page/Replace Start Page with Tool Window.
by BobRichards
Mon May 23, 2016 2:07 pm
Forum: General
Topic: Validation Pop Up Warning
Replies: 6
Views: 1483

Re: Validation Pop Up Warning

You can't use dynamics since the hash tags would be illegal characters. Use the GetProperty/SetProperty methods like you would for any IOrderItem property.

Code: Select all

IOrderItem order = {order object}
order.SetProperty("XYZ##", "New value");
by BobRichards
Mon May 23, 2016 1:51 pm
Forum: General
Topic: Title Insurance Calculations/Underwriter
Replies: 10
Views: 2079

Re: Title Insurance Calculations/Underwriter

IsCalculated is set to false if the user has entered the value. Otherwise it is true.