Category Archives: Software

Information related to software

SQL Scalar Variables

February 28, 2023

SQL scalar variables (otherwise known as local scalar variables) must be defined with type and set to a value before the variable can be used. This can be done in two steps or as a single step. Additional Links

Using the Select Automation with Python Code Snippets

February 28, 2023

Select allows you to supplement the “canned” conditions and activities for Automation with Python code. The object passed to the code (context) depends on how the automation task is coded. The context can come from at least five sources. Python Hooks in Automation Automation can host Python snippets in both the condition and activity areas. The way automation… Read More »

Loading Additional .NET Assemblies

June 1, 2020

There are times you want to add an additional .NET library to your code. It might be an actual Microsoft assembly or from another vendor. First you import CLR then add the desired assembly. (Note that the DLL must be either in the GAC or the executable folder.) Finally import the type/class namespace(s). If you want to minimize… Read More »

Properties and Methods with IronPython

December 4, 2024

This page is designed to provide examples of using .NET features in IronPython when creating Softpro Select content. The comprehensive example is here but I’ll provide examples in a form you are more familiar with. In all the code below, “order” is always the top level order object. For instance, in a custom order rule (COR), it is… Read More »