If you are using an earlier version of ScanTools software with User Exits and you want to migrate to the current version of ScanTools, you can have some rework to perform. Following is a general description of what you must do for this migration from each of the earlier versions of ScanTools.
Current |
Version |
User Exit Migration Route |
---|---|---|
ScanTools
|
All versions |
Rewrite all User Exits. |
ScanTools
|
All versions |
Port User Exits from 16-bit to 32-bit and recompile. |
ScanTools II |
1.0 - 1.2 |
Port to the new shell and recompile is recommended. can not be required, depending on User Exit calls being used. See Rebuilding User Exits for additional details. |
ScanTools II |
1.3 |
No changes are required. |
Image ScanTools |
1.0 - 4.2 |
Port to the new shell and recompile is required. See Rebuilding User Exits for additional details. |
Image ScanTools |
5.0 - 5.2 |
No changes are required. |
ScanTools Plus |
6.0 - 7.0 |
No changes are required. |
For any User Exit work, you must have ScanTools software and you must use a C/C++ compiler that can create Windows Dynamic Link Libraries (DLLs). Scantron has developed and tested user exits using the following development platforms:
Any User Exits that use Group 3 Compression must be modified when working with ScanTools Plus.
Change to Group 4 Compression
We recommend that you change from G3 to G4 compression by modifying any calls that read:
SetClipCompressionMethod( SLK_COMP_GROUP3 );
to:
SetClipCompressionMethod( SLK_COMP_GROUP4 );
Use Group 3 Compression
If you must use G3 Compression, the following lines in ClipHelper.cpp file’s WriteTiffFileFromClip function must be changed.
From:
case cpmGroup3:
ClipDesc.wCompression = COMPRESSION_CCITTFAX3;
if (GetCfig()->features.comint == OP10XX || ((iRowCount * iColCount) < 320000)) )
{
ClipDesc.dwCompressionOptions = 0;
}
else
{
ClipDesc.dwCompressionOptions = GROUP3OPT_2DENCODING;
}
break;
To:
case cpmGroup3:
ClipDesc.wCompression = COMPRESSION_CCITTFAX3;
ClipDesc.dwCompressionOptions = GROUP3OPT_2DENCODING;
break;
NOTE: If you use Group 3, compression option 2D encoding is required.
See Help on Help for additional information on using this help file. See Scantron Technical Support for additional information on technical support and training options. See the ScanTools Suite System Requirements for further details on hardware and software requirements. ScanTools is a suite of products; the specific information you want may appear in the help for a different module. If you don't find what you're looking for here, try one of the following:
|
Scantron Corporation
Customer Service (forms, products, and services): 1-800-SCANTRON (722-6876) Technical Support: 1-800-445-3141 |
|
Copyright © 1998-2012 Scantron Corporation. All rights reserved. Use permitted only under license. www.scantron.com. No part of the Help or user guides may be reproduced in any form, or by any means, without express permission from Scantron Corporation. LINKS TO THIRD PARTY SITES This help system may contain links to third party websites ("Linked Sites"). The Linked Sites are not under the control of Scantron and Scantron is not responsible for the content of any Linked Site, including without limitation any link contained in a Linked Site or any changes or modifications to a Linked Site. Scantron is not responsible for web casting or any other form of transmission received from any Linked Site. Scantron provides Users with the ability to link the Assessment System to the Linked Sites as a convenience to you, and the inclusion of any link does not imply endorsement by Scantron of the Linked Site or any association with its operators. |