S siansoft Member Joined Mar 6, 2005 Messages 5 Programming Experience 1-3 Feb 23, 2007 #1 Hi How to convert hexadecimal values from this form("0x00000004") to ("&Hxxxx")? Thanks
vis781 Well-known member Joined Aug 30, 2005 Messages 2,016 Location Cambridge, UK Programming Experience 5-10 Feb 23, 2007 #2 Just swap the 0x for &H and clear the 0000's 0x00000005 equates to.. &H5 I think!! However that doesn't ring true for all hex. Upvote 0 Downvote
Just swap the 0x for &H and clear the 0000's 0x00000005 equates to.. &H5 I think!! However that doesn't ring true for all hex.