REAL LIFE STATISTICS:
I have a DLL which converts COBOL datatypes to IEEE datatypes and along the way handles EBCDIC-ASCII conversion as well.
I recently sent this kit to a user in the UK who wanted to convert some COBOL-created data using Microsoft Visual BASIC.
As a 'thank you' he sent me a "MSVB version of the test/demo kit."
Here are some interesting file size comparisons:
In fairness, the VB kit also includes a small set of installation and required run-time support files.
(And does ZIP down to a tidy 2.9 Mb)
MCM
I have a DLL which converts COBOL datatypes to IEEE datatypes and along the way handles EBCDIC-ASCII conversion as well.
I recently sent this kit to a user in the UK who wanted to convert some COBOL-created data using Microsoft Visual BASIC.
As a 'thank you' he sent me a "MSVB version of the test/demo kit."
Here are some interesting file size comparisons:
Code:
PowerBASIC PB/CC demo kit. Creates plain console user interface, with perfectly serviceable file conversion. PB/CC "*.bas" source code for sample conversion: 8 Kb (Not including standard Windows Header files) #INCLUDE file with UDTs, equates 8 Kb COB2IEEE.DLL Conversion Libary 34 Kb PB/CC Executable 26 Kb ========== Total Size of files required for installation 76 Kb Microsoft Visual BASIC v 5.0 Demo kit. Adds GUI user interface consisting of exactly one button ("Command_1") which does an "open file" dialog and begins processing. "*.frm" file contaning forms definition, UDTs, CONST 18 Kb and all processing code in the PB/CC sample conversion program supplied converted to VB COB2IEEE.DLL Conversion Library 34 Kb VB executable 41 Kb ========== Total Size of all files required for installation: 4,614 Kb.
(And does ZIP down to a tidy 2.9 Mb)
MCM
Comment