Simple Decimal To Binary Converter

By | 2002-06-01

This simple code will convert the Long Integers to it’s binary Equivalent…

Original Author: Raj A

Inputs

Long Integers ( positive ) 1 – 999999999

Assumptions

This program is not capable of accepting negative numbers or numbers which are more than 999999999

Returns

if the range is met then this will return the Binary equivalent…
if the input is either non-numeric or not in range ( 1 – 999999999 ) then
it won’t continue…..

Code

Option Explicit
'********************************************'
'***This Function is to just to Return the***'
'***Binary Equivalent for Any long integer***'
'********************************************'
Private Sub Command1_Click()
  
  Dim str1 As String
  
  On Error GoTo a:
  
  str1 = cBin(CLng(Text1.Text))
  
  MsgBox str1
  
  Exit Sub
a:
End Sub
Public Function cBin(a As Long) As String
  
  Dim bal As Long
  Dim str1 As String
  
  bal = a
  
    Do Until a <= 0
      bal = a Mod 2
      If bal = 0 Then
        a = a / 2
      Else
        a = (a - 1) / 2
      End If
      str1 = str1 & CStr(bal)
    Loop
    
    cBin = StrReverse(str1)
    
End Function

Author: dwirch

Derek Wirch is a seasoned IT professional with an impressive career dating back to 1986. He brings a wealth of knowledge and hands-on experience that is invaluable to those embarking on their journey in the tech industry.

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.