Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
CVSMBF, MKSMBF$, ETC.
#4
Here is a snippet from QB that I executed in QB:

  a = 91234.56
  b$ = MKD$(a)
1 c = CVD(b$)
2 PRINT c
   PRINT b$
OPEN "O", 1, "testmkd"    'sent it a file
WRITE #1, b$
CLOSE 1

The result of lines 1-2 correctly yields the proper value of "a".
--------------------------------------------------------------------------------------
Here is the QB64 code I used to test b$ that I wrote to the file:

   Open "I", 1, "testmkd"
   Input #1, b$
1 Print CVD(b$)
2 Print CVDMBF(b$)
   close 1

OUTPUT:
-7.6795... D-226    (line 1)
91234.5625          (line 2)

As you can see only line 2 correctly interpreted the string b$ back to the original value of a in QB.

Arnold
Reply


Messages In This Thread
CVSMBF, MKSMBF$, ETC. - by arnoldhf - 07-18-2022, 01:20 PM
RE: CVSMBF, MKSMBF$, ETC. - by bplus - 07-18-2022, 01:31 PM
RE: CVSMBF, MKSMBF$, ETC. - by arnoldhf - 07-18-2022, 05:17 PM
RE: CVSMBF, MKSMBF$, ETC. - by SMcNeill - 07-18-2022, 02:50 PM
RE: CVSMBF, MKSMBF$, ETC. - by arnoldhf - 07-18-2022, 05:06 PM
RE: CVSMBF, MKSMBF$, ETC. - by SMcNeill - 07-18-2022, 06:15 PM
RE: CVSMBF, MKSMBF$, ETC. - by arnoldhf - 07-18-2022, 07:10 PM



Users browsing this thread: 3 Guest(s)