Search found 11 matches

by daniorg
Tue Nov 01, 2011 2:06 pm
Forum: General
Topic: Publishing hangs indefinitely
Replies: 2
Views: 794

Publishing hangs indefinitely

When I use publish it opens the progress window but hangs indefinitely. Hitting Cancel only disables the button and changes the status of the dialog to "Cancelling..." The only way to get out of it is to task manager, end process Select.exe. I thought it may have been the plugin I am devel...
by daniorg
Fri Oct 28, 2011 5:51 pm
Forum: General
Topic: How to Enable Publish button
Replies: 3
Views: 834

Re: How to Enable Publish button

Thanks for the fast response. What you said has worked, the Publish button is now enabled. But I have another problem. When I use publish it opens the progress window but hangs indefinitely. Hitting Cancel only disables the button and changes the status of the dialog to "Cancelling..." The...
by daniorg
Wed Oct 26, 2011 5:34 pm
Forum: ProForm (Order Tracking)
Topic: How to add more groups?
Replies: 1
Views: 748

How to add more groups?

in SPAdmin under Manager -> Proform ReadyDoc Trees it shows a list of readydoc values, in the "Group" column they are all set to a value of "Unassigned"

How can we add more groups or at least set the value to something other than "Unassigned"
by daniorg
Wed Oct 26, 2011 5:11 pm
Forum: General
Topic: How to Enable Publish button
Replies: 3
Views: 834

How to Enable Publish button

I have just set up a new install of select, I am working on creating a plugin/addin using the SDK and I am not sure how to "Enable" the publish button for documents. It is grayed out.
by daniorg
Wed Dec 08, 2010 4:54 pm
Forum: General
Topic: Project Reference not found
Replies: 3
Views: 815

Re: Project Reference not found

OK, that will work for my development machine.

I have yet to actually deploy this to any regular, non-development machines so at this point I dont know the process....Can you tell me the recommended way of deploying a solution like this. How can I get Select to recognize my other Dll's?
by daniorg
Wed Dec 08, 2010 2:12 pm
Forum: General
Topic: Determine if order is new or existing when being saved
Replies: 5
Views: 919

Re: Determine if order is new or existing when being saved

I am running version 2.4 and if I have "Auto Save order at creation" checked, the saved handler isnt invoked.

Is this an exception to the rule or do i have some bad code.
by daniorg
Wed Dec 08, 2010 2:06 pm
Forum: General
Topic: Project Reference not found
Replies: 3
Views: 815

Project Reference not found

I am building a softpro UI integration so that when you click on a button that i added to the ribbon we perform custom logic. However, my custom logic has another DLL that it is dependent upon (containing basic data object classes). It appears that when you run the project and register the package m...
by daniorg
Tue Dec 07, 2010 6:56 pm
Forum: General
Topic: Determine if order is new or existing when being saved
Replies: 5
Views: 919

Re: Determine if order is new or existing when being saved

That should accomplish what I am looking for, Ill assume that since it starts at 0, the actual value will be 1 when I get access to it as this happens after the order is saved correct?

However, correct me if I am wrong, but auto-saving does NOT fire the Order Saved Event Handler, right?
by daniorg
Tue Dec 07, 2010 5:26 pm
Forum: General
Topic: Determine if order is new or existing when being saved
Replies: 5
Views: 919

Determine if order is new or existing when being saved

I have tapped into the save order handler.... OrderHelper oh = GetService<OrderHelper>(); oh.RegisterOrderSavedHandler(saved_handler); private void saved_handler(object sender, EventArgs e) { IOrder order = sender as IOrder; // check is order is new or existing } and now I am wondering if there is a...
by daniorg
Tue Dec 07, 2010 5:22 pm
Forum: General
Topic: Determine print job origination
Replies: 2
Views: 634

Re: Determine print job origination

Just what I was looking for, thanks