Search found 82 matches

by dlerickson
Tue Mar 30, 2021 5:35 pm
Forum: Shell (User Interface)
Topic: Debug Build Error - Blocking Process
Replies: 5
Views: 900

Debug Build Error - Blocking Process

I'm getting the following error when attempting to debug: System.IO.IOException: The process cannot access the file 'C:\ProgramData\SoftPro\Select\4.3Exp\Commands.ctm' because it is being used by another process. Stack Trace: at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath) at ...
by dlerickson
Thu Dec 12, 2019 12:37 pm
Forum: Integration Development
Topic: Setting the Trust Account for an order via the API
Replies: 23
Views: 9981

Re: Setting the Trust Account for an order via the API

In both cases, the answer is "yes." What I'm doing is providing a dropdown list to a user with possible trust accounts, the data for which is pulled as such: var accountsManager = SelectServer.GetService<IAccountsManager>(); var trustAccounts = accountsManager.TrustAccounts .Where(x => x.E...
by dlerickson
Wed Dec 11, 2019 7:31 pm
Forum: Integration Development
Topic: Setting the Trust Account for an order via the API
Replies: 23
Views: 9981

Re: Setting the Trust Account for an order via the API

Hi, I found that snippet for setting the Trust Account in the post above in this thread. I'm using it in my code, but when the code gets run, the Trust Account does not get set, and there are no errors being thrown, or any other messaging that I can see. What are the blocking conditions which would ...
by dlerickson
Fri Nov 22, 2019 12:00 pm
Forum: Shell (User Interface)
Topic: Order Number Prefix Questions
Replies: 8
Views: 1770

Re: Order Number Prefix Questions

OK, I see the "Rename Order" function in the Select client itself, and that's basically the same thing that I'm trying to do programmatically. I'm pulling the prefixes per profile, as this tool seems to be doing, and attempting to reset the "Number" property on the order itself. ...
by dlerickson
Thu Nov 21, 2019 6:05 pm
Forum: Shell (User Interface)
Topic: Order Number Prefix Questions
Replies: 8
Views: 1770

Re: Order Number Prefix Questions

I'm a bit confused here - when you say "rename an order," what field are you referring to specifically? I've tried setting the "Number" field, but it's showing as read-only, and any attempts to set it are failing, as expected. Is there another field I should be setting instead?
by dlerickson
Thu Nov 21, 2019 5:45 pm
Forum: Shell (User Interface)
Topic: Order Number Prefix Questions
Replies: 8
Views: 1770

Re: Order Number Prefix Questions

OK, that was what I needed. BTW, disregard question 2; it did indeed turn out to be irrelevant. But now, I have another problem. On the order, the properties "Prefix", "Number", and "BaseNumber" are all read-only for an order that has been created in a previous session....
by dlerickson
Wed Nov 20, 2019 3:49 pm
Forum: Shell (User Interface)
Topic: Order Number Prefix Questions
Replies: 8
Views: 1770

Order Number Prefix Questions

Hi, we have a scenario in which a Title order needs to be transferred between office branches, and possibly Select profiles. In doing so, the user wants to be able to reset the order number with a different prefix which corresponds to the new profile/area. 1) Is it possible to retrieve a list of the...
by dlerickson
Thu Oct 11, 2018 3:20 pm
Forum: Shell (User Interface)
Topic: Setting CDF Description
Replies: 6
Views: 1549

Re: Setting CDF Description

Sorry for the confusion; "TrySetProperty" is a static method that I had coded in a helper class that wraps some extra logic around internal calls to the standard [IOrderItem].SetProperty call, and is not a direct call into the API itself. You should see the inner call in the code snippet t...
by dlerickson
Wed Oct 10, 2018 3:52 pm
Forum: Shell (User Interface)
Topic: Setting CDF Description
Replies: 6
Views: 1549

Re: Setting CDF Description

Hi Bob, I've implemented the changes we spoke about the other day. Now I'm seeing a new issue. Anytime I call SetProperty on any IOrderItem at any level, I'm getting an ObjectDisposedException which originates from SoftPro.EntityModel.dll. Example message: "Cannot access a disposed object. Obje...
by dlerickson
Thu Oct 04, 2018 12:47 pm
Forum: Shell (User Interface)
Topic: Setting CDF Description
Replies: 6
Views: 1549

Re: Setting CDF Description

Here is a bit of context as to what I'm doing: I have an XML-based configuration document that dictates the drill-through at runtime. Here's the relevant snippet: <Node name="CDFs" active="true"> <Handler type="EscrowCollection" target="CDFs" method="Inde...