I was looking for a way to convert the end result to a 'long' integer in visual basic so i could see the XXXXXXXX part of the number as you were talking about.

I tried:
Code:
text3.text = CLng(text2.text)
^ which would make the text3 textbox display the long version of my end result. It gave me an 'overflow' error.

So i tried:
Code:
text3.text = CInt(text2.text)
and I got the same thing.

I think I'm getting close, just need the right code, or a way to display it at 32bit . Any more tips!?

Thanks