Search found 105 matches

by chris.brady
Fri Feb 22, 2019 10:28 am
Forum: Integration Development
Topic: Developing for version 4.5+
Replies: 0
Views: 24254

Developing for version 4.5+

I don't see anything in the current SDK, so here it goes... Starting in 4.5, it appears that each user requires their own Select installation. Since we're in a terminal server environment, how do we develop for that? The client install no longer sits in the program files folder, so how do we deal wi...
by chris.brady
Thu Jan 24, 2019 6:44 pm
Forum: Integration Development
Topic: Add custom tab to user properties in SPAdmin
Replies: 3
Views: 1883

Re: Add custom tab to user properties in SPAdmin

I got a notification that there was a reply to this thread, and saw Bob had said it wasn't possible, but that comment appears to have been deleted. If that means it's possible and you're working on a snippet, awesome! However, if it isn't possible in the current architecture, please let me know so I...
by chris.brady
Tue Jan 22, 2019 10:03 am
Forum: Integration Development
Topic: Add custom tab to user properties in SPAdmin
Replies: 3
Views: 1883

Add custom tab to user properties in SPAdmin

Is there a way to add another tab or two of our own to the user properties page in SPAdmin?

If so, do you have a snippet for how that might be done?
2019-01-22_8-00-51.jpg
2019-01-22_8-00-51.jpg (52.74 KiB) Viewed 1883 times
by chris.brady
Mon Nov 12, 2018 6:37 pm
Forum: Integration Development
Topic: Null reference exception when accessing order store/select server, etc.
Replies: 3
Views: 1526

Re: Null reference exception when accessing order store/select server, etc.

So let's say our shell package calls a WinForm from a button click, and our user sits on the form for 4 hours before acting on it. How would we go about refreshing an interface from the form in that case? Would we have to make the package class public and, say, pass it into the constructor of the ca...
by chris.brady
Wed Aug 15, 2018 2:42 pm
Forum: Integration Development
Topic: Server package order changes not reflected in open tab
Replies: 12
Views: 3570

Re: Server package order changes not reflected in open tab

We're on 4.3.10.

If you create a task programmatically through the API on a Server package and set its status, that change is not reflected on the client. We've had this problem since it was first reported on this thread.

Are you saying the task status IS reflected on the client in your tests?
by chris.brady
Fri Aug 10, 2018 3:38 pm
Forum: Installation and Setup
Topic: Select blurry on Windows server 2016 terminal server
Replies: 3
Views: 2228

Re: Select blurry on Windows server 2016 terminal server

Not SQL 2016. Windows Server 2016.

Monitors are the same as with 2008 R2. The terminal servers (both 2008 and 2016) are being connected to via RDP.

2016 Terminal server with blurry image is under zero load -- only user on the system is me. Resources are the same as with the 2008 server.
by chris.brady
Fri Aug 10, 2018 12:22 pm
Forum: Installation and Setup
Topic: Select blurry on Windows server 2016 terminal server
Replies: 3
Views: 2228

Select blurry on Windows server 2016 terminal server

We're working on migrating our terminal servers from Server 2008 R2 to 2016. We've noticed an odd issue that is only affecting Select. When Select is doing something that takes a while to complete (opening an order, generating a document, etc.), the window will often lose focus/become blurry. It is ...
by chris.brady
Wed Jun 27, 2018 4:05 pm
Forum: Integration Development
Topic: Invalid Assembly marked for discovery error
Replies: 5
Views: 2130

Re: Invalid Assembly marked for discovery error

Come to think of it, we recently installed some custom snap section work we got from SoftPro.
Looking at the .Snapsections file, and noting your request for everything, including blank lines, I noticed there was a blank line at the end of the file. Deleting that blank line got rid of the problem.
by chris.brady
Wed Jun 27, 2018 2:30 pm
Forum: Integration Development
Topic: Invalid Assembly marked for discovery error
Replies: 5
Views: 2130

Re: Invalid Assembly marked for discovery error

Correct, it's called from a shell package. It's pretty basic. It breaks at _spShell.OpenStandardEditor(orderMoniker), where _spShell is the Shell object. public void OpenOrder(Guid orderId) { var oId = new OrderIdentifier(orderId); OpenOrder(oId); } public void OpenOrder(OrderIdentifier orderId) { t...
by chris.brady
Wed Jun 13, 2018 2:57 pm
Forum: Integration Development
Topic: Invalid Assembly marked for discovery error
Replies: 5
Views: 2130

Invalid Assembly marked for discovery error

We get the following error the first time we try to open an order in the UI through the API using the Shell's OpenStandardEditor method, passing in an order Uri. After that, opening an order in this way doesn't generate the error. If you restart Select, the same scenario happens -- errors the first ...