Pegasus Imaging Corporation
Accusoft Pegasus

imaging SDKs that accelerate development

FormFix® v3.1 FAQ

Contact Support



Q1How can I determine if I have the latest version of an Accusoft Pegasus control?
Q2How do I distribute my application?
Q3What DLL’s do I need to distribute with my application?
Q4Why do I see an increase in memory when using the AlignImage method in the FormFix control?

Q1: How can I determine if I have the latest version of an Accusoft Pegasus control?
Please download the PegConnect utility program from the following link: PegConnect
or reference the Latest Builds page.

Q2: How do I distribute my application?
Please note: You must have received unlock codes in order to distribute applications. These are received when runtimes are purchased. If you have not received them please Contact Sales.

1) If you are using the .NET interface you must call the UnlockRuntime method in the Licensing class where the application begins and pass the unlock codes as the parameters. For example:

formFix1.Licensing.UnlockRuntime(1234,1234,1234,1234);

2) If you are using the ActiveX control you must call the UnlockRuntime method where your application begins and pass the unlock codes as the parameters. For example:

FormFix1.UnlockRuntime 1234,1234,1234,1234


Q3: What DLL’s do I need to distribute with my application?
1) If you are using the ActiveX interface please distribute the following DLL:

PegasusImaging.ActiveX.FormFix3.dll

Please Note: You must register the PegasusImaging.ActiveX.FormFix3.dll via your installation program or manually via the regsvr32.exe utility.

2) If you are using the .NET interface please distribute the following DLL:

PegasusImaging.WinForms.FormFix3.dll

Q4: Why do I see an increase in memory when using the AlignImage method in the FormFix control?
The most likely reason this issue would occur is if in the formModelReadImage Event the release parameter on the FromHdib method was not set to true. For example, in the C# sample code listed below the release parameter is set to true for demonstration purposes. This is the recommended setting to resolve the issue.

e.FormImage = PegasusImaging.WinForms.FormFix3.FormImage.FromHdib(frmDef.TemplateImages[0].Hdib, true, FF);