Search found 15 matches

by dfrandsen
Fri Jan 30, 2015 2:58 pm
Forum: Integration Development
Topic: IOrder.IsReadOnly
Replies: 2
Views: 535

Re: IOrder.IsReadOnly

I was looking at a QuickWatch of the dynamic object, and it's not listed. But I do see it on the IOrder object. Strange...
by dfrandsen
Fri Jan 30, 2015 2:29 pm
Forum: Integration Development
Topic: IOrder.IsReadOnly
Replies: 2
Views: 535

IOrder.IsReadOnly

In the old version, we used to be able to check this property to see if the current order was editable or not. The property no longer exists, and I can't find any information in the forums or the SDK that explains how to do this in version 3. I did find the "LockStatus" and "IsLocked&...
by dfrandsen
Tue Jan 27, 2015 11:37 am
Forum: Integration Development
Topic: Publishing a report - Is it possible?
Replies: 3
Views: 706

Re: Publishing a report - Is it possible?

Are there any examples anywhere that show how to add an attachment to an order? The SDK documentation has nothing, and I've found nothing in the forums aside from this thread. We used to be able to do something like this: IDocumentImage docSP = order.DocumentImage.CreateNew(); docSP.Trustee = order....
by dfrandsen
Wed Dec 21, 2011 11:37 am
Forum: General
Topic: Select Server Connection failure
Replies: 12
Views: 1902

Re: Select Server Connection failure

Same problem for me too.
by dfrandsen
Mon Jul 18, 2011 10:25 am
Forum: Crystal Report Development
Topic: Generating documents outside the Select environment
Replies: 3
Views: 2658

Generating documents outside the Select environment

I'd like to be able to generate certain SoftPro documents (specifically the HUD) from a standalone application. In other words, I'd like to be able to call some assembly, pass in the order number, and get back a PDF report. Without knowing the mechanics of exactly how the Select client generates doc...
by dfrandsen
Thu Jun 09, 2011 9:05 am
Forum: Integration Development
Topic: EmailRecipientsTo property on PrintJob
Replies: 1
Views: 609

EmailRecipientsTo property on PrintJob

On the Documents tab, when a user clicks the Email button, I'm interacting with the resulting PrintJob. I was looking for a way to determine which email recipients were selected, and found that the PrintJob object has an "EmailRecipientsTo" object in the Properties collection and it's type...
by dfrandsen
Tue May 24, 2011 6:15 pm
Forum: Integration Development
Topic: User field not populated in attachments list
Replies: 1
Views: 566

Re: User field not populated in attachments list

I just noticed that if I close out of the SoftPro client, then reopen it, the list now appears populated correctly.
by dfrandsen
Tue May 24, 2011 5:49 pm
Forum: Integration Development
Topic: User field not populated in attachments list
Replies: 1
Views: 566

User field not populated in attachments list

I have a custom package, that among other things, copies saved or emailed documents to SPImage. My code looks basically like this: IDocumentImage doc = order.DocumentImage.CreateNew(); doc.Trustee = order.CurrentUser; doc.OriginalLocation = new Uri(((FileInfo)itm.Properties[PrintJobItemProperty.File...
by dfrandsen
Thu May 19, 2011 1:24 pm
Forum: Integration Development
Topic: order wrongly showing changes have been made
Replies: 1
Views: 608

order wrongly showing changes have been made

We've built a custom package that keeps track of changes to certain fields within the SoftPro client. Basically, we attach to the IWindowManager.ActiveDocumentChange event and then examine the loaded order whenever the user moves to a different order. After installing the package, we find that as so...
by dfrandsen
Thu Apr 28, 2011 1:48 pm
Forum: Integration Development
Topic: destination directory for new DocumentImages
Replies: 1
Views: 513

destination directory for new DocumentImages

We have a windows service running on a server which picks up PDF documents from our website and saves them to SPImage. The code looks something like this: //create a new doc image so this will get added to SPImage IDocumentImage docSP = order.DocumentImage.CreateNew(); docSP.Trustee = order.CurrentU...