devxlogo

BinToDec – Convert from binary to decimal

' convert from binary to decimal'' NOTE: requires Power2()Function BinToDec(value As String) As Long    Dim result As Long, i As Integer, exponent As Integer    For i = Len(value) To 1 Step -1        Select Case Asc(Mid$(value, i, 1))            Case 48      ' "0", do nothing            Case 49      ' "1", add the corresponding power of 2                result = result Or Power2(exponent)            Case Else                Err.Raise 5      ' Invalid procedure call or argument        End Select        exponent = exponent + 1    Next    BinToDec = resultEnd Function

Charlie has over a decade of experience in website administration and technology management. As the site admin, he oversees all technical aspects of running a high-traffic online platform, ensuring optimal performance, security, and user experience.

See also  Five Early Architecture Decisions That Quietly Get Expensive

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.