How to Convert Decimal to Hexadecimal using VBA
How to Convert Decimal to Octal using VBA
<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" />
Sub Get_Hex_n_OCt_Values()
For i = 0 To 255
Debug.Print i & vbTab & Hex(i) & vbTab & Oct(i)
Next i
End Sub
- Login or register to post comments
- Feed: vbadb feed
- Original article
