RIMESPRODUCTION INC

'VB normally operates in decimal notation, but hexadecimal (base 16) 'and octal (base 8) can also be use 'decimal MyVar = 25.2 'hexidecimal MyVar = &H14A 'octal MyVar = &O37 'VB support the following mathematical functions 'Base conversions Hex 'returns Hex string representation of a number Oct 'returns Octal string representation of a number ... ................
................