Search found 1292 matches

by BobRichards
Wed Jun 11, 2014 6:13 pm
Forum: Integration Development
Topic: 2.6 to 3.0 Migration
Replies: 1
Views: 778

Re: 2.6 to 3.0 Migration

If you want to find a contact that is a Settlement Agent (for instance) that is in the order, you can do this: IEnumerable<dynamic> contacts = ((IEnumerable<dynamic>)order.GetProperty("Contacts")); dynamic contact = contacts.FirstOrDefault(t => t.Code == "A"); In this case, the c...
by BobRichards
Wed Jun 11, 2014 4:34 pm
Forum: Integration Development
Topic: Event Subscription to MSMQ.
Replies: 1
Views: 684

Re: Event Subscription to MSMQ.

Have you looked in the SDK under HowTos/Subscribe to Events? There are subscription examples for MSMQ and SOAP11.
by BobRichards
Wed Jun 11, 2014 11:19 am
Forum: Integration Development
Topic: How to get the active document in the Documents tab in 3.0
Replies: 9
Views: 2082

Re: How to get the active document in the Documents tab in 3

To get the active order in a client package: IWindowManager wm = GetService<IWindowManager>(); IWindowFrame activeDocument = wm.ActiveDocument; IOrder order = (IOrder)activeDocument.GetProperty("Order"); Of course, if the user has selected the Start Page (for instance), the active window w...
by BobRichards
Tue Jun 10, 2014 11:48 am
Forum: Shell (User Interface)
Topic: No way to hide the ErrorList window
Replies: 1
Views: 1201

Re: No way to hide the ErrorList window

Just to provide closure - Yes, this is just how the shell is. However, thank you for the suggestion. Perhaps it will be added in the future if there is sufficient interest.
by BobRichards
Tue Jun 10, 2014 10:13 am
Forum: Integration Development
Topic: Debuging 3.0.108220.1102
Replies: 5
Views: 2505

Re: Debuging 3.0.108220.1102

Did it work in debug mode during development for this version of code (yours and ours)?
by BobRichards
Tue Jun 10, 2014 9:45 am
Forum: Shell (User Interface)
Topic: Add button to ProForm group
Replies: 1
Views: 1738

Re: Add button to ProForm group

In the Symbols section of your CTD section, add the following lines: <Guid name="CommandSetGuid" value="f436331e-3d02-4b9b-af76-fc878517bcf9"> <ID name="OrderTab" value="4501" /> </Guid> Then you can add your own buttons: <!-- Order Ribbon --> <MenuRef id=&quo...
by BobRichards
Mon Jun 09, 2014 10:25 am
Forum: Shell (User Interface)
Topic: Debuging 3.0.108220.1102
Replies: 1
Views: 1694

Re: Debuging 3.0.108220.1102

I assume you fixed your problem. Sorry no one responded initially.
by BobRichards
Thu Jun 05, 2014 5:02 pm
Forum: Installation and Setup
Topic: 3.0 Help File Errors
Replies: 1
Views: 1758

Re: 3.0 Help File Errors

Your SDK is installed correctly. Documentation for the SDK is incomplete.
by BobRichards
Thu Jun 05, 2014 3:41 pm
Forum: Integration Development
Topic: New GUI ID for custom ribbon tab button
Replies: 1
Views: 1592

Re: New GUI ID for custom ribbon tab button

If the button is in a group that you have created, you are free to make your own.
by BobRichards
Tue Feb 04, 2014 12:10 pm
Forum: Integration Development
Topic: BuyerSeller Couple Type
Replies: 1
Views: 1612

Re: BuyerSeller Couple Type

After you set the BuyerSellerType to Joint, you will have access to the second individual.

Code: Select all

buyer = order.CreateNew("Buyer");
order.BuyerSellerType = BuyerSellerType.Joint;