Not a Member Yet,
Click here to Register

ID: 377
Viewed: 3411
Added: Aug 19, 2002
Version:
Snippet uploaded by: snippet
Written By: Unknown
Demo: Sorry, no demo



User Rated at: 0 Stars
Rate This:

Thank you for your vote. Please wait...

It appears you already voted for this snippet

It appears your vote value was empty

Converts to Decimal to Binary and Binary to Decimal.

Highlight all by clicking in box
<!---Declaration--->
Option Explicit
Dim decml As Double
Dim jbinary As String
Dim digit As Single, power As Single
Dim h As Integer, i As Integer, jbin As Integer
Dim j As Integer, k As Integer

Highlight All
<!---Code--->
Private Sub cmdCalculate_Click()

decml = 16 'this is the number to convert

DecBin decml, jbin ' convert from decimal to binary


Print "Decimal ="; BinDec(jbin) ' convert from binary to decimal

Print "binary = "; jbin ' display the result

Print "Hex = "; Hex(decml)

Print "OCTAL = "; Oct$(decml)
End Sub
' converts a string of binary digits to its decimal equivalent
Static Function BinDec(jbinary)
Dim digit, power, i, jbin As Integer
decml = 0: jbin = 0
jbinary = UCase(jbinary)
For i = Len(jbinary) To 1 step -1 ' convert from binary to decimal
digit = Asc(Mid(jbinary, i, 1)) - 48
If digit < 0 Or digit > 1 Then decml = 0: Exit For
decml = decml + digit * 2 ^ (power)
power = power + 1
Next i
BinDec = decml
End Function

' converts a decimal value to an equivalent string of binary digits
Static Sub DecBin(decml, jbin)

jbin = ""
h = Hex(decml) ' convert from decimal to hexadecimal
For i = 1 To Len(h)
digit = InStr("0123456789ABCDEF", Mid(h, i, 1)) - 1
If digit < 0 Then jbin = "": Exit For
j = 8: k = 4
Do ' convert from hexadecimal to binary
jbin = jbin + Right$(Str((digit j) Mod 2), 1)
j = j - (j 2): k = k - 1
If k = 0 Then Exit Do
Loop While j
Next i
End Sub;


No Comments to show

Please completely fill out the form below if you want to review this snippet. All reviews are subject to validation.


Replying to a Comment...


Adding your comment. Please wait...

Thanks for adding your comment!. After further review it will be added.

There was a problem adding your comment. Please try again.

Please complete all the fields in the form before sending.

© 2002 - 2024 snippetlibrary.com All Rights Reserved. Conditions
Do NOT follow this link or you will be banned from the site!