11-30-2024, 01:35 PM
Couldn't this just be because the Single values used are low? In that case, the resulting 4 bytes would also contain CHR$(0):
Code: (Select All)
Dim a As Single
a = 250
For b = 1 To 4
Print Asc(MKS$(a), b)
Next