On 11.06.09 at 21:59 +0300 Richmond Mathewson apparently wrote:
BUT, if I put:

on mouseUp
 put quote & fld "fHEX" & quote into FHEX
 put baseConvert(FHEX,16,10) into fld "fDEC"
end mouseUp

where fld "fHEX" contains 20Ac (or any other Hexadecimal number)

it screws up and I get 133824

POO!


Try

on mouseUp
 put fld "fHEX" into FHEX
 put baseConvert(FHEX,16,10) into fld "fDEC"
end mouseUp

Robert
_______________________________________________
use-revolution mailing list
[email protected]
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution

Reply via email to