Category Archives: Software

Information related to software

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 »