Search found 1290 matches

by BobRichards
Tue Jul 05, 2016 8:37 am
Forum: Integration Development
Topic: Problems setting County on a property
Replies: 18
Views: 2270

Re: Problems setting County on a property

The disambiguate event passes all the matching rows to the handler in the Rows collection. It is up to you to select the appropriate row in your handler. This example just picked the first row. Try setting a breakpoint in the handler and view the list. There you will see all the properties you can f...
by BobRichards
Fri Jul 01, 2016 12:13 pm
Forum: Integration Development
Topic: Lookup error
Replies: 2
Views: 580

Re: Lookup error

See post Problems setting County on a property for information on handling this event.
by BobRichards
Fri Jul 01, 2016 12:09 pm
Forum: Integration Development
Topic: Plat Book and Page
Replies: 1
Views: 468

Re: Plat Book and Page

An order can be thought of as a collection of objects implementing the IOrderItem interface (see the SDK for more information on this class). These items have properties and collections of any type and possibly other IOrderItems. By using the Field Code Browser in Select, you can greatly speed up de...
by BobRichards
Fri Jul 01, 2016 11:08 am
Forum: Integration Development
Topic: Adding Buyers, Sellers, Lenders
Replies: 4
Views: 911

Re: Adding Buyers, Sellers, Lenders

For example:

Code: Select all

var contacts = (IList)iOrder["Contacts"];
var buyer = iOrder.CreateNew("Buyer");
contacts.Add(buyer);
by BobRichards
Fri Jul 01, 2016 10:44 am
Forum: Integration Development
Topic: Adding Buyers, Sellers, Lenders
Replies: 4
Views: 911

Re: Adding Buyers, Sellers, Lenders

Please post your error/trace information.
by BobRichards
Thu Jun 30, 2016 9:55 am
Forum: Integration Development
Topic: Lots and Taxmaps Collection
Replies: 1
Views: 465

Re: Lots and Taxmaps Collection

Our pattern for adding to collections is to get the type from the IOrder then add it to the list. // Get a property. IOrderItem property = (IOrderItem)((IList)iOrder["Properties"])[0]; // Add a lot. IList lots = (IList)property["Lots"]; IOrderItem lot = iOrder.CreateNew("Lot...
by BobRichards
Wed Jun 29, 2016 4:36 pm
Forum: Shell (User Interface)
Topic: IShell.OpenStandardEditor throws InvalidOperationException
Replies: 6
Views: 1509

Re: IShell.OpenStandardEditor throws InvalidOperationExcepti

I find that opening the custom editor in the IShell.Load event does cause some issues for me as well - but not the same issues. However, it functions perfectly if done in a button event. Do you need to open it in the Load event? If so, what are you trying to achieve?
by BobRichards
Wed Jun 29, 2016 2:07 pm
Forum: Shell (User Interface)
Topic: IShell.OpenStandardEditor throws InvalidOperationException
Replies: 6
Views: 1509

Re: IShell.OpenStandardEditor throws InvalidOperationExcepti

You need to change your Uri format slightly.

Code: Select all

shell.OpenStandardEditor(new Uri("sp-select://./wd"));
by BobRichards
Wed Jun 29, 2016 9:54 am
Forum: Integration Development
Topic: ProgressEventArgs doesn't seem to work on NewOrder
Replies: 3
Views: 622

Re: ProgressEventArgs doesn't seem to work on NewOrder

The progress callback method is only used if templates are being loaded into the order. First the raw order is created. Then, before each template is applied, the callback is updated with a message about which template is about to be loaded, the current template number and the total number of templa...
by BobRichards
Tue Jun 28, 2016 6:03 pm
Forum: Integration Development
Topic: Conversion issue with OrderURI, OrderKind
Replies: 9
Views: 1364

Re: Conversion issue with OrderURI, OrderKind

The client will take care of disposing it.