Search found 89 matches

by john.morton
Mon Mar 24, 2014 8:40 am
Forum: Shell (User Interface)
Topic: Order Creation/Modification Via Overlay Using External Data
Replies: 5
Views: 1146

Re: Order Creation/Modification Via Overlay Using External D

...either create a new order or overlay an existing order, depending on whether a current order matching a Loan number exists. Unfortunately, with the 2.6 version of the API, there is no way to search orders. You must connect directly to our database to find the order numbers that you want to deal ...
by john.morton
Fri Mar 07, 2014 11:50 am
Forum: Integration Development
Topic: Error Saving Order
Replies: 4
Views: 774

Re: Error Saving Order

There are messages available on the IOrder. You can examine their Level to see their severity, and act accordingly: using (IOrder order = OrderStore.NewOrder(spec)) { try { // Manipulate your new order here foreach (IOrderMessage message in order.GetMessages()) { MessageBox.Show(message.Text); } if ...
by john.morton
Mon Feb 10, 2014 9:20 am
Forum: Integration Development
Topic: Cameron API New Order - custom order # not working
Replies: 6
Views: 836

Re: Cameron API New Order - custom order # not working

That behavior has been marked as a bug. It will be fixed in service pack 3.
by john.morton
Thu Feb 06, 2014 10:40 am
Forum: Installation and Setup
Topic: Softpro Boylan: concurrent users count
Replies: 1
Views: 764

Re: Softpro Boylan: concurrent users count

I do not know of a way to use Boylan to do this directly, but you can probably get a pretty good estimate by looking at your SQL Server information or your licensing information. Since all of our individual users in Boylan connect directly to the database, you could start capturing your average/max ...
by john.morton
Thu Feb 06, 2014 10:08 am
Forum: Installation and Setup
Topic: Will Cameron Development SDK require VS 2008?
Replies: 1
Views: 807

Re: Will Cameron Development SDK require VS 2008?

I do not believe that it requires VS 2008 anymore. You should be able to use the Select 3.0 SDK in VS 2010.
by john.morton
Thu Feb 06, 2014 9:41 am
Forum: Integration Development
Topic: Cameron API New Order - custom order # not working
Replies: 6
Views: 836

Re: Cameron API New Order - custom order # not working

Try setting OrderCreationSpec.BaseOrderNumber instead of OrderCreationSpec.Number. "Number" actually becomes a combination of the prefix, baseOrderNumber, and suffix.
by john.morton
Tue Feb 04, 2014 3:34 pm
Forum: Integration Development
Topic: ReceivedBy
Replies: 12
Views: 1499

Re: ReceivedBy

I believe you might just be attempting to use the wrong property. I took our previous example and added the setting of the RecievedBy property: Using order As IOrder = OrderStore.NewOrder(spec) Try Dim DynOrder As Object = order DynOrder.Project = "Setting a simple string property." DynOrd...
by john.morton
Tue Feb 04, 2014 1:56 pm
Forum: Integration Development
Topic: ReceivedBy
Replies: 12
Views: 1499

Re: ReceivedBy

You might need to supply a larger code sample so that we know what "identity" is in your example. First though, could you repost this question as a new topic since it appears to be unrelated to the rest of the thread. This will ensure that your question is more visible.
by john.morton
Fri Jan 31, 2014 4:08 pm
Forum: Integration Development
Topic: ReceivedBy
Replies: 12
Views: 1499

Re: ReceivedBy

I did find another workaround that might help. We do support a few string methods that can be used against our IQueryable<> collections: Contains(), StartsWith() and EndsWith(). So, you can use these methods to avoid the direct string comparisons that are causing the problem. You could rewrite your ...
by john.morton
Fri Jan 31, 2014 2:47 pm
Forum: Integration Development
Topic: ReceivedBy
Replies: 12
Views: 1499

Re: ReceivedBy

We were able to reproduce this behavior. It's an issue when using string comparisons against IQueryable collections using Visual Basic. Unfortunately, the only workarounds we can think of are going to be using C# instead of VB, or to avoid string comparisons in a expression like this. We have logged...