Search found 75 matches

by toddsou
Tue Oct 26, 2021 4:53 pm
Forum: Installation and Setup
Topic: concurrent SPS instances?
Replies: 1
Views: 2099

concurrent SPS instances?

Hello- When I launch the select.exe client it runs fine, and when I attempt to launch a 2nd instance of the select.exe client, I get an error box "Failed to start application........" with some additional text which states that it "failed to switch to the existing Select process...&qu...
by toddsou
Tue Mar 30, 2021 12:57 pm
Forum: Integration Development
Topic: Seeking guidance for hosting a web browser control within shell package
Replies: 3
Views: 1022

Re: Seeking guidance for hosting a web browser control within shell package

Hi Pradeepa- Yes, upon sitting on a breakpoint, I can see the underlying ChromiumWebBrowser control via HtmlBrowser2's Controls[0] indexer. But I'm guessing SoftPro/support would frown upon accessing the underlying technology in this way. And also, SoftPro's support for my shell package solution wou...
by toddsou
Tue Mar 23, 2021 2:46 pm
Forum: Integration Development
Topic: Seeking guidance for hosting a web browser control within shell package
Replies: 3
Views: 1022

Seeking guidance for hosting a web browser control within shell package

Hi- I'm targeting SPS SDK 4.3.41. I see in the SDK there is a class called HtmlBrowser2 control. But I also see in the ..../Select deployment folder that there appears to be evidence of the CefSharp/Chromium library at work behind the scenes. Is the SDK's HtmlBrowser2 control simply a wrapper around...
by toddsou
Fri Feb 26, 2021 4:10 pm
Forum: Integration Development
Topic: How to search an Order's Notes ?
Replies: 1
Views: 711

How to search an Order's Notes ?

Hi- SPS version 4.3.10.1 I am needing to iterate through an open Order's Notes and look at each Note's content for specific strings. I have something like this, but the Cast to INote throws, as the items in the collection are not derived from INote. var notes = _activeOrder["Notes"] as ILi...
by toddsou
Wed Oct 21, 2020 8:05 am
Forum: Integration Development
Topic: Streaming with IAttachmentFile
Replies: 1
Views: 883

Streaming with IAttachmentFile

Hi- In order to efficiently handle the creation (and extraction) of large attachments with SPS, we're interested in the IAttachmentFile's CopyTo( ) method, which accepts a Stream. 1) I'm assuming I can build a class which derives from Stream and is capable of providing the next set of bytes from my ...
by toddsou
Tue Jun 09, 2020 2:45 pm
Forum: Integration Development
Topic: Given a path, locate the Attachment ....?
Replies: 1
Views: 1227

Given a path, locate the Attachment ....?

Hello- SPS version 4.3 My starting point is a path string, which identifies an Attachment in my currently active Order. Is there a way to resolve that path to the desired IAttachmentFile ? Here's a snippet from an example in the SDK : IAttachmentFile fileItem = folderItem.Items .Where(t => t.Path ==...
by toddsou
Wed Jan 29, 2020 4:00 pm
Forum: Integration Development
Topic: 4.6's custom start page - query string params available ?
Replies: 1
Views: 1988

Re: 4.6's custom start page - query string params available ?

....or is the current Profile available somehow via the IEnvICE interface from within the start page, itself ?
by toddsou
Tue Jan 14, 2020 2:59 pm
Forum: Integration Development
Topic: 4.6's custom start page - query string params available ?
Replies: 1
Views: 1988

4.6's custom start page - query string params available ?

Hi- I'd like to show a custom start page that is defined differently per Profile. However, the custom start page is a global setting, not a Profile setting. So with that in mind, is there something I can do to the custom start page URL itself such that I can provide to the remote server a hint of wh...
by toddsou
Fri Jan 03, 2020 12:07 pm
Forum: Standard/Enterprise Development
Topic: reading, writing PXT files
Replies: 1
Views: 2546

reading, writing PXT files

Hi- It is my understanding that the SoftPro Standard and SoftPro Enterprise clients offer a means to import and export .pxt files. We are interested in reading those files into our system. It is my understanding that although the .pxt files are text-based, there are special rules for processing the ...
by toddsou
Tue Dec 10, 2019 11:14 am
Forum: Integration Development
Topic: 4.6.3 SDK - attempting to access Plugin settings fails
Replies: 0
Views: 25852

4.6.3 SDK - attempting to access Plugin settings fails

My plugin/shell package is built using the 4.6.3 SDK. Here is a snippet of my code which is failing. var pluginMgr = serviceProvider.GetService<SelectServer>().GetService<IPluginManager>(); // Get the plugin info object of our plugin. This needs to match the "name" given in the SelectPlugi...