home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The World of Computer Software
/
World_Of_Computer_Software-02-386-Vol-2of3.iso
/
b
/
baswiz19.zip
/
BW$BAS.ZIP
/
BCDINT.BAS
< prev
next >
Wrap
BASIC Source File
|
1993-01-29
|
754b
|
15 lines
' +----------------------------------------------------------------------+
' | |
' | BASWIZ Copyright (c) 1990-1993 Thomas G. Hanlin III |
' | |
' | The BASIC Wizard's Library |
' | |
' +----------------------------------------------------------------------+
DECLARE FUNCTION BCDFormat$ (Nr AS STRING, HowToFormat%, RightDigits%)
DECLARE FUNCTION BCDSet$ (NumSt$)
FUNCTION BCDInt$ (Nr AS STRING)
BCDInt$ = BCDSet$(BCDFormat$(Nr, 0, 0))
END FUNCTION