Search found 1290 matches

by BobRichards
Thu Nov 05, 2015 3:21 pm
Forum: Integration Development
Topic: Adding New Buttons in SoftPro 4.0
Replies: 14
Views: 1794

Re: Adding New Buttons in SoftPro 4.0

Does the additional button appear on your development station when you build in Debug mode?
by BobRichards
Thu Nov 05, 2015 10:46 am
Forum: Integration Development
Topic: Adding New Buttons in SoftPro 4.0
Replies: 14
Views: 1794

Re: Adding New Buttons in SoftPro 4.0

Since I have no idea what you have tried and what may or may not have worked for you, I can't be of much help. Have you been able to build and test any shell packages since you upgraded to Select 4.0? Do you have a recent version (4.x) of the SDK installed? Are you doing a debug build or release bui...
by BobRichards
Wed Nov 04, 2015 6:25 pm
Forum: Integration Development
Topic: Accessing SelectServer from Server Package
Replies: 5
Views: 721

Re: Accessing SelectServer from Server Package

Yes. For instance on the client side, there are services such as IShell - the interface for interacting with document and order GUI windows.

This is not available on the server since the server doesn't have an order window GUI.
by BobRichards
Wed Nov 04, 2015 4:47 pm
Forum: Integration Development
Topic: Create New Exp Hive
Replies: 5
Views: 925

Re: Create New Exp Hive

By default when you build and execute a shell package from Visual Studio, the build project passes /rootSuffix:Exp to Select when it executes your package. Therefore only the Exp hive will be used. If your package components show up when you execute Select from the command line (or via Desktop short...
by BobRichards
Wed Nov 04, 2015 10:57 am
Forum: Integration Development
Topic: Accessing SelectServer from Server Package
Replies: 5
Views: 721

Re: Accessing SelectServer from Server Package

Yes. On the server, all IServiceProvider objects load from the same container so all services are available.
by BobRichards
Tue Nov 03, 2015 2:53 pm
Forum: Integration Development
Topic: Accessing SelectServer from Server Package
Replies: 5
Views: 721

Re: Accessing SelectServer from Server Package

If you are a server package, you are executing in the SelectServer context. You don't need to get the SelectServer interface. protected override void OnInitialize() { # Setup callback for later configuration since I can't register trigger handler until after server is up. ISelectServerEnvironment ss...
by BobRichards
Fri Oct 30, 2015 12:50 pm
Forum: Integration Development
Topic: Create New Exp Hive
Replies: 5
Views: 925

Re: Create New Exp Hive

Yes. Delete the experimental hive (i.e. 4.0Exp) then use a command line tool from the SDK to create a new hive. This command will clone the base hive (4.0 in this example) to create any hive name suffix you wish. For compatibility with SDK tools, you should name it Exp , of course. > cd \Program Fil...
by BobRichards
Fri Oct 30, 2015 11:12 am
Forum: Integration Development
Topic: Problems setting County on a property
Replies: 18
Views: 2275

Re: Problems setting County on a property

So your problem is that you are setting the property address County property in an API application with a key value that is duplicated in the County lookup table and you are not seeing a call by Select into your lookup row disambiguation event handler. So assuming: You are in a profile that the Coun...
by BobRichards
Thu Oct 29, 2015 2:23 pm
Forum: Integration Development
Topic: Accessing the FullLoanRateTable of a Policy using the API
Replies: 4
Views: 913

Re: Accessing the FullLoanRateTable of a Policy using the AP

I'm sorry but I don't understand your question. Could you please restate it?
by BobRichards
Thu Oct 29, 2015 1:47 pm
Forum: Integration Development
Topic: Problems setting County on a property
Replies: 18
Views: 2275

Re: Problems setting County on a property

Assuming the County Lookup Table is available in the API user's profile, you only have to set the county attribute to a value in the table. Select fills in the remaining properties from the table for you. using (IOrder iOrder = os.OpenOrder(search)) { dynamic order = iOrder; dynamic property = order...