Search found 44 matches

by BBenson
Wed Jun 11, 2014 2:51 pm
Forum: Integration Development
Topic: How to get the active document in the Documents tab in 3.0
Replies: 9
Views: 2079

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

We have both a print job handler which works fine and also a UI extension package. This print job handling package has been in existence for 3 years and has worked well. We also have a shell UI extension that has also been around for as long. The UI extension includes a button to launch a proprietar...
by BBenson
Wed Jun 11, 2014 11:26 am
Forum: Integration Development
Topic: How to get the active document in the Documents tab in 3.0
Replies: 9
Views: 2079

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

Thanks but I have already tried that approach as well but when the Documents window is the active window, it is always null. More specifically the activeDocument.DocumentHandle is an empty GUID. I am using that approach in our other shell UI package and it works fine, but not for the Documents windo...
by BBenson
Wed Jun 11, 2014 9:58 am
Forum: Integration Development
Topic: How to get the active document in the Documents tab in 3.0
Replies: 9
Views: 2079

How to get the active document in the Documents tab in 3.0

Hello, When multiple orders are opened in Select 3.0, the 'Documents' window displays them in an Microsoft Outlook style pane where the user can select the order in which to create ReadyDocs. In our custom publish package shell UI, I also need to know which order the user has selected. How can I cap...
by BBenson
Tue Jun 03, 2014 10:20 am
Forum: Integration Development
Topic: Detecting when an order is closing in 3.0?
Replies: 2
Views: 683

Re: Detecting when an order is closing in 3.0?

Thanks John,

I will take a look.

Bob
by BBenson
Tue May 27, 2014 3:18 pm
Forum: Integration Development
Topic: Expected Uri format for IErrorList.Add() in 3.0
Replies: 2
Views: 554

Re: Expected Uri format for IErrorList.Add() in 3.0

Thank-you that works, I couldn't find the OrderUri class.
by BBenson
Tue May 27, 2014 1:31 pm
Forum: Integration Development
Topic: Expected Uri format for IErrorList.Add() in 3.0
Replies: 2
Views: 554

Expected Uri format for IErrorList.Add() in 3.0

Hello,

The IErrorList API has changed in 3.0 and now expects a System.Uri instead of an OrderUri as in 2.6.
  • What is the expected Uri format to add an error to the currently open order?
  • I have tried various formats using the order number and order identifier, but none have worked.
Thanks,
Bob
by BBenson
Tue May 20, 2014 11:44 am
Forum: Integration Development
Topic: Detecting when an order is closing in 3.0?
Replies: 2
Views: 683

Detecting when an order is closing in 3.0?

Hello, I am subscribing to several PropertyChanged events on properties of the Order object in my Shell package and would like to ensure that the event handlers are detached before the order is closed. Is there a way to determine when the open order in the process of being closed so I can un-subscri...
by BBenson
Fri May 16, 2014 3:15 pm
Forum: Integration Development
Topic: Accessing FieldCodePath in 3.0?
Replies: 13
Views: 1787

Re: Accessing FieldCodePath in 3.0?

Thanks one more time John, that should be the last question on this topic...

Thanks,
Bob
by BBenson
Fri May 16, 2014 2:41 pm
Forum: Integration Development
Topic: Accessing FieldCodePath in 3.0?
Replies: 13
Views: 1787

Re: Accessing FieldCodePath in 3.0?

John, The use of INotifyPropertyChanged is going to work fine for existing RequstedTask handling. My next question is how to hook up something similar to INotifyCollectionChanged on the RequestedTask collection so that I can also add the INotifyPropertyChanged handling to new tasks that the user is ...