![]() | PPJ Framework |
The PPJ Framework is the collection of libraries that are needed by ported applications to support features that are not available, or are too different, in the standard .NET Framework. For example, masked editing is not available in .NET 1.1 and the way it's implemented in .NET 2.0 is too different from what SQLWindows/Team Developer applications expect to use.
Additionally the PPJ Framework provides a very convenient layer in between the newly generated .NET code and the .NET Framework. Thanks to this layer we can provide fixes for bugs that are present in the .NET Framework and we can debug applications putting breakpoints into key places in the core libraries.
The PPJ Framework is composed of 6 separate libraries (Table 1) compiled into .NET assemblies. Its architecture is very thin, most of the low level work is left to the .NET Framework and the PPJ Framework simply provides plumbing code, or adapts parameters and checks for errors.
Most of the implementation work is related to the visual layer and SQL Support.
PPJ Assembly | Description |
---|---|
PPJ.Runtime.46.dll | The core support library. Contains everything that is needed by most SAL applications, including support for reports, SQL binding, COM/ActiveX support, forms, QuickObjects, etc. |
PPJ.Runtime.Vis.46.dll | Implementation of the Visual ToolChest library. The implementation is fully based on .NET controls and classes and there are no proprietary controls. |
PPJ.Runtime.XSal.46.dll | Implementation of the XSal2 library in .NET. |
PPJ.Runtime.DDE.46.dll | Implementation of DDE functionality found in SQLWindows/Team Developer. The implementation is based on Microsoft's DDEML module, which is extremely reliable and still used by most Microsoft applications, including Office. |
PPJ.Runtime.Reports.46.dll | Reporting module for Crystal Reports .NET. |
PPJ.Runtime.Reports.LL.46.dll | Reporting module for Combit List & Labels. |
PPJ.Runtime.Reports.RS.46.dll | Reporting module for Microsoft Reporting Services. |
PPJ.Runtime.Reports.ST.46.dll | Reporting module for Stimulsoft. |
C1.Win.C1FlexGrid.4.dll | FlexGrid.NET component. This component is redistributed as part of the PPJ Framework under an OEM license between ITG and ComponentOne. |
C1.Win.C1Ribbon.4.dll | RibbonBar.NET assemblies. This component is redistributed as part of the PPJ Framework under an OEM license between ITG and ComponentOne. |
C1.Win.C1FlexGrid.4.Design.dll C1.Win.C1Ribbon.4.Design.dll | Flexgrid and Ribbon designer files. These assemblies are needed only if the application is deployed as source code. |
ICSharpCode.SharpZipLib.dll | The SharpZipLib is used only by XSalZip functions. It can be freely distributed. The source code is available here. |
SkinSoft.VisualStyler.dll | Skinning engine assembly. Needed if the application uses skinning. |
![]() |
---|
Ported applications reference only the PPJ libraries that are actually needed. If your application doesn't use DDE functionality, you will not need to reference or deploy PPJ.Runtime.DDE.DLL. |
All the PPJ assemblies are strongly named and can be deployed using XCOPY deployment or the GAC.