|
-
Feb 2nd, 2004, 09:01 PM
#1
Thread Starter
Frenzied Member
[VB] How to conv from hex
Each digit is multiplied by 16 raised to the power of the digits place (starting with zero), then all of the results are added together.
&H2E35 = 11,829
(5 * 16^0) = 5 * 1 = 5
(3 * 16^1) = 3 * 16 = 48
(14 * 16^2) = 14 * (16 * 16) = 3584
(2 * 16^3) = 2 * (16 * 16 * 16) = 8192
---------------------------------------------
Total = 11829
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|