Search found 52 matches
- Fri Feb 26, 2021 4:10 pm
- Forum: Integration Development
- Topic: How to search an Order's Notes ?
- Replies: 1
- Views: 4
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 IList; var lo...
- Wed Oct 21, 2020 8:05 am
- Forum: Integration Development
- Topic: Streaming with IAttachmentFile
- Replies: 1
- Views: 222
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 ...
- Tue Jun 09, 2020 2:45 pm
- Forum: Integration Development
- Topic: Given a path, locate the Attachment ....?
- Replies: 1
- Views: 423
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 ==...
- Wed Jan 29, 2020 4:00 pm
- Forum: Integration Development
- Topic: 4.6's custom start page - query string params available ?
- Replies: 1
- Views: 1329
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 ?
- Tue Jan 14, 2020 2:59 pm
- Forum: Integration Development
- Topic: 4.6's custom start page - query string params available ?
- Replies: 1
- Views: 1329
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...
- Fri Jan 03, 2020 12:07 pm
- Forum: Standard/Enterprise Development
- Topic: reading, writing PXT files
- Replies: 1
- Views: 513
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 ...
- Tue Dec 10, 2019 11:14 am
- Forum: Integration Development
- Topic: 4.6.3 SDK - attempting to access Plugin settings fails
- Replies: 0
- Views: 4430
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 SelectPlugin.manifest...
- Tue Dec 03, 2019 12:08 pm
- Forum: Integration Development
- Topic: 4.6.3 debug plugin activation error
- Replies: 3
- Views: 1481
Re: 4.6.3 debug plugin activation error
Thanks to Elliott for gathering this info: The only workaround for this, is to: 1. Stop debugging the Shell project 2. Remove the %LOCALAPPDATA%\SoftProSelect\app-4.6.3\Plug-ins folder (if the debugged plugin is the only plugin installed in the client) or, the sub-folder in this path that correspond...
- Thu Nov 21, 2019 8:40 am
- Forum: Integration Development
- Topic: 4.6.3 debug plugin activation error
- Replies: 3
- Views: 1481
Re: 4.6.3 debug plugin activation error
Hey Bob- Once everything is loaded, I can interact with the plugin just fine. Of course, we're talking about the default, OOTB shell package, so you just get Button1 and Button2 to click. But they respond, and I can hit breakpoints. So to your question, it seems fine. But my concern is around the po...
- Tue Nov 19, 2019 2:51 pm
- Forum: Integration Development
- Topic: 4.6.3 debug plugin activation error
- Replies: 3
- Views: 1481
4.6.3 debug plugin activation error
Hi- I’m running SPS 4.6.3, performing shell/plugin development with VS 2015. Upon hitting F5, SPS indicates it failed to load/activate my plugin. Specifically, I get a MessageBox with the Black/Yellow warning icon which states: Plug-in Activation Error An error occurred while activating plug-ins. So...