Convert 8 bit integer to binary
Convert 8 bit integer to binary
API Declarations
'Note: Do not dim variables "AS" anything in ASP =)
Rate Convert 8 bit integer to binary
(2(2 Vote))
Dim s As String, i As Integer
For i = 0 To 7
s = (n Mod 2) & s
t = n / 2
n = Int(t)
Next
Bin = s
End Function
Convert 8 bit integer to binary Comments
No comments yet — be the first to post one!
Post a Comment