Does anyone here know how to convert a VB Double to Cobol S9(15)V99 Comp-3 data type?
feedback
|
|
If it doesn't need to be done in the same program, it seems to me it would be easier to find a common format that both VB and COBOL can understand. That would be text. In other words, the simplest solution may be to write the number out to a file as text "3.14159" and have the COBOL code read it in in that format and If that's not possible, the The S9(15)V99 requires 18 nybbles (a nybble being 4 bits, or half an octet) to store:
No space is needed for the decimal point since a So the number
The only tricky bit is that final sign nybble ( Here's a bit of code I whipped up in Excel VBA (I don't have VB installed on this machine unfortunately) that shows you how to do it. The makeComp3() function should be easily transferred into a real VB program. The macro test program outputs the values The first step (after all the declarations) is to make the double an implied decimal by multiplying it by the relevant power of ten then turning it into an integer:
Next, we make it into a string of the correct size, to make processing easier:
Then we process that string two digits at a time and each pair is combined into an output nybble. The final step is to process the last digit along with the sign:
And this is just the test harness, though it could probably do with a few more test cases :-)
| |||||
feedback
|
|
I wanted the conversion to be done in VB but don't know how. Anywayz thanks for the reply. Well is there anyway to code the conversion in VB? what the program does is that it reads a string input and then convert the numeric digits to COMP-3 in cobol and store it to a text file. | |||
|
feedback
|
|
Thank you so much. I think it worked, but when I try to upload it in the mainframe thru ftp and open it on a copy book the field value is INVALID. I think the problem is during the upload. | |||
feedback
|