Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Converting Long To Single
Message
General information
Forum:
Visual Basic
Category:
Coding, syntax & commands
Miscellaneous
Thread ID:
00552918
Message ID:
00552939
Views:
13
>How do I convert a Long To a Single?
>
>Thaks

Is this what you are looking for?
Private Function ShiftLeft(ByVal Value As Long, Shift As Integer) As
Long
    ShiftLeft = (Value * (2 ^ Shift))
End Function
Previous
Reply
Map
View

Click here to load this message in the networking platform